maersai_heavy_back_main/Service/Cloud/Msg/Host/Resp/GetConfigRes.cs

49 lines
1.2 KiB

This file contains ambiguous Unicode characters!

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;
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.11.2 换电站应答后台服务器下发参数获取
/// </summary>
public class GetConfigRes : ICmd
{
/// <summary>
/// 应答结果
/// 0:成功 1:失败
/// <see cref="Entity.Constant.CloudEnum.ResultInt"/>
/// </summary>
public int re { get; set; }
/// <summary>
/// 可换 soc 阈值
/// 可选1-100
/// </summary>
public char chsoc { get; set; }
/// <summary>
/// 换电收费模型 id
/// 可选
/// </summary>
public int eid { get; set; }
/// <summary>
/// 电池运营模型 id
/// 可选
/// </summary>
public string oid { get; set; }
/// <summary>
/// 充电电接模型 id
/// 可选
/// </summary>
public int ceid { get; set; }
public string GetCmd()
{
return CloudConst.getConfigRes;
}
}
}