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