You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
811 B

namespace Entity.Api.Resp;
/// <summary>
///
/// 换电plc模式
/// </summary>
public class PlcSwapModelResp
{
/// <summary>
/// 模式状态[40318]-10001:手动模式;10002:自动模式;10003:维修模式;
/// </summary>
public int ModelState { get; set; }
/// <summary>
/// 遥本控状态[40319]-0:无效值;10000:本地控制;10001:远程控制
/// </summary>
public int ControlModel { get; set; }
/// <summary>
/// 站外灯状态值【40506】1000:绿灯0黄灯1001红灯。
/// </summary>
public int StationInLampSts { get; set; }
/// <summary>
/// 站内灯状态值【40507】0:无颜色1000绿灯1001红灯1002黄灯1003黄灯闪烁。
/// </summary>
public int StationOutLampSts { get; set; }
}