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.
20 lines
462 B
20 lines
462 B
using Service.Cloud.Common;
|
|
|
|
namespace Service.Cloud.Msg.Host.Resp
|
|
{
|
|
/// <summary>
|
|
/// 3.2.3.2 换电站应答后台服务器下发换电站的基础信息
|
|
/// </summary>
|
|
public class DeliverBasicInformationResp : ICmd
|
|
{
|
|
/// <summary>
|
|
/// 应答结果
|
|
/// </summary>
|
|
public int re { get; set; } = 0;
|
|
|
|
public string GetCmd()
|
|
{
|
|
return CloudConst.setStBaseInfoRes;
|
|
}
|
|
}
|
|
} |