20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Models/BoosterStationStateModel.cs
XuMin 3b6c570800 1 经过电控腔测试和升压站测试;
2 解决了后一个通信连接会影响前一个通信连接的问题;
3 测试过程中存在的问题修改;
2024-09-03 16:30:34 +08:00

60 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace JiangsuEarthquake.Models
{
public class BoosterStationStateModel : ParameterModel
{
private ImageSource BoosterStation_device1;
/// <summary>
/// 设备1供电
/// </summary>
public ImageSource BoosterStation_Device1
{
get { return BoosterStation_device1; }
set { BoosterStation_device1 = value; this.DoNotify(); }
}
private ImageSource BoosterStation_device2;
/// <summary>
/// 设备2供电
/// </summary>
public ImageSource BoosterStation_Device2
{
get { return BoosterStation_device2; }
set { BoosterStation_device2 = value; this.DoNotify(); }
}
private ImageSource BoosterStation_device3;
/// <summary>
/// 设备3供电
/// </summary>
public ImageSource BoosterStation_Device3
{
get { return BoosterStation_device3; }
set { BoosterStation_device3 = value; this.DoNotify(); }
}
private ImageSource BoosterStation_device4;
/// <summary>
/// 设备4供电
/// </summary>
public ImageSource BoosterStation_Device4
{
get { return BoosterStation_device4; }
set { BoosterStation_device4 = value; this.DoNotify(); }
}
}
}