120 lines
3.0 KiB
C#
120 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Media;
|
|
|
|
namespace FujianEarthquake.Models
|
|
{
|
|
public class JunctionBoxStatusModel : ParameterModel
|
|
{
|
|
private ImageSource JunBox_ProBoard_Seis1_state;
|
|
|
|
/// <summary>
|
|
/// 接驳盒保护板地震仪1状态反馈
|
|
/// </summary>
|
|
public ImageSource JunBox_ProBoard_Seis1_State
|
|
{
|
|
get { return JunBox_ProBoard_Seis1_state; }
|
|
set { JunBox_ProBoard_Seis1_state = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_ProBoard_Seis2_state;
|
|
|
|
/// <summary>
|
|
/// 接驳盒保护板地震仪2状态反馈
|
|
/// </summary>
|
|
public ImageSource JunBox_ProBoard_Seis2_State
|
|
{
|
|
get { return JunBox_ProBoard_Seis2_state; }
|
|
set { JunBox_ProBoard_Seis2_state = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_ProBoard_Video_state;
|
|
|
|
/// <summary>
|
|
/// 接驳盒保护板摄像状态反馈
|
|
/// </summary>
|
|
public ImageSource JunBox_ProBoard_Video_State
|
|
{
|
|
get { return JunBox_ProBoard_Video_state; }
|
|
set { JunBox_ProBoard_Video_state = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_PhoConverter_power;
|
|
|
|
/// <summary>
|
|
/// 接驳盒-光电转换器电源状态
|
|
/// </summary>
|
|
public ImageSource JunBox_PhoConverter_Power
|
|
{
|
|
get { return JunBox_PhoConverter_power; }
|
|
set { JunBox_PhoConverter_power = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_seis1;
|
|
|
|
/// <summary>
|
|
/// 地震仪1供电
|
|
/// </summary>
|
|
public ImageSource JunBox_Seis1
|
|
{
|
|
get { return JunBox_seis1; }
|
|
set { JunBox_seis1 = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_seis2;
|
|
|
|
/// <summary>
|
|
/// 地震仪2供电
|
|
/// </summary>
|
|
public ImageSource JunBox_Seis2
|
|
{
|
|
get { return JunBox_seis2; }
|
|
set { JunBox_seis2 = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_video;
|
|
|
|
/// <summary>
|
|
/// 摄像供电
|
|
/// </summary>
|
|
public ImageSource JunBox_Video
|
|
{
|
|
get { return JunBox_video; }
|
|
set { JunBox_video = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_lamp;
|
|
|
|
/// <summary>
|
|
/// 摄像灯供电
|
|
/// </summary>
|
|
public ImageSource JunBox_Lamp
|
|
{
|
|
get { return JunBox_lamp; }
|
|
set { JunBox_lamp = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource JunBox_power;
|
|
|
|
/// <summary>
|
|
/// 接驳盒供电
|
|
/// </summary>
|
|
public ImageSource JunBox_Power
|
|
{
|
|
get { return JunBox_power; }
|
|
set { JunBox_power = value; this.DoNotify(); }
|
|
}
|
|
}
|
|
}
|