namespace Entity.Api.Resp; /// /// /// 换电plc模式 /// public class PlcSwapModelResp { /// /// 模式状态 /// 0:无效值 ///1000:手动模式 ///1010:自动模式 /// public int ModelState { get; set; } /// /// 遥本控状态0:无效值 /// 1000:本地控制 ///1010:远程控制 /// public int ControlModel { get; set; } /// /// 入口灯状态值 /// 0:无颜色 /// 1000:绿灯 /// 1010:绿灯闪烁 /// 1020:红灯 /// 1030:红灯闪烁 /// 1040:黄灯 /// 1050:黄灯闪烁 /// 1100:所有灯亮 /// public int StationInLampSts { get; set; } }