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.
using Service.Cloud.Common;
namespace Service.Cloud.Msg.Host.Req;
public class StationRunStatus : ICmd
{
/// <summary>
/// 服务状态 0:未知 1:换电站服务启用 2:换电站服务停用
/// </summary>
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;
}