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.

55 lines
1.4 KiB

5 months ago
namespace Service.Charger.Client;
/// <summary>
/// 充电桩状态信息
/// </summary>
public class ChargerPile
{
/// <summary>
/// 充电方式
/// 0自动充满为止1按电量2按时间3按金额
/// </summary>
public int ct { get; set; }
/// <summary>
/// 充电参数
/// 按充电方式判断除0外 电量:单位 kWh精确到 0.01 时间:单位 min精确到 0.01 金额:单位 元,精确到 0.01
/// </summary>
public string cp { get; set; }
/// <summary>
/// 启动类型
/// 0运营平台启动1APP 启动2: 本地启动
/// </summary>
public int st { get; set; }
/// <summary>
/// 车辆vin
/// </summary>
public string Vin { get; set; }
/// <summary>
/// 充电订单号
/// 云平台下发的充电订单编号,;当启动模式为本地主动启动(即插即充)时,该 值以 0 填充
/// </summary>
public string con { get; set; }
/// <summary>
/// 充电流水号
/// </summary>
public string cosn { get; set; }
/// <summary>
/// 充电枪编号
/// 充电枪的唯一标识码
/// </summary>
public string? pn { get; set; }
5 months ago
/// <summary>
/// 工作状态
/// </summary>
public byte WorkStatus { get; set; }
5 months ago
}