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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}