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.
|
|
|
|
using Service.Cloud.Common;
|
|
|
|
|
|
|
|
|
|
namespace Service.Cloud.Msg.Host.Req;
|
|
|
|
|
|
|
|
|
|
public class StationRunStatus : ICmd
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务状态 0:未知 1:换电站服务启用 2:换电站服务停用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int rs { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电站运营状态 1:营业状态 2:暂停营业状态 3:设备维护状态 4:歇业状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int os { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电站总体故障等级 参考 1.4 中故障等级定义
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int fl { get; set; }
|
|
|
|
|
public string GetCmd()
|
|
|
|
|
{
|
|
|
|
|
return CloudConst.stationRunStatus;
|
|
|
|
|
}
|
|
|
|
|
}
|