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