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.

27 lines
688 B

using Service.Cloud.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Service.Cloud.Msg.Host.Resp
{
/// <summary>
/// 3.2.5.2 换电站应答后台服务器下发换电站的可服务状态设置
/// </summary>
public class SetServiceRes : ICmd
{
/// <summary>
/// 服务状态
/// 1:换电站服务启用 2:换电站服务停用
/// <see cref="Entity.Constant.CloudEnum.ResultInt"/>
/// </summary>
public int st { get; set; }
public string GetCmd()
{
return CloudConst.setServiceRes;
}
}
}