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