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.
28 lines
655 B
28 lines
655 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.7.2 换电站应答后台服务器设置换电站的电池运营模型
|
|
/// </summary>
|
|
public class SetOpModelRes : ICmd
|
|
{
|
|
/// <summary>
|
|
/// 应答结果
|
|
/// 0:成功 1:失败
|
|
/// <see cref="Entity.Constant.CloudEnum.ResultInt"/>
|
|
/// </summary>
|
|
public int re { get; set; }
|
|
|
|
public string GetCmd()
|
|
{
|
|
return CloudConst.setOpModelRes;
|
|
}
|
|
}
|
|
}
|