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.

23 lines
663 B

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