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.

17 lines
474 B

namespace Service.Charger.Msg.Http.Resp;
/// <summary>
/// 9.2.1.8 站控响应充电枪停止充电操作
/// </summary>
public class PileStopChargeHttpRes
{
/// <summary>
/// 充电枪ID
/// 0x01充电枪10x02充电枪20x03双枪充电;(0x00&0xFF无效)
/// </summary>
public string pn { get; set; }
/// <summary>
/// 启动结果 0 成功 1 设备已停机 0xFF 其他
/// </summary>
public string rs { get; set; }
}