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.

39 lines
791 B

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