|
|
|
@ -26,7 +26,7 @@ namespace Service.Charger.Msg.Charger.Req
|
|
|
|
|
public ushort MaxTempDetectionPointNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最低蓄电池温度
|
|
|
|
|
/// 最低蓄电池温度数据分辨率:1ºC/位,-50 ºC 偏移量;数据范围:-50ºC ~+200ºC;
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(40, 16, PropertyReadConstant.Bit, 1, 0, 50)]
|
|
|
|
|
public Int16 MinBatteryTemp { get; set; }
|
|
|
|
@ -110,82 +110,88 @@ namespace Service.Charger.Msg.Charger.Req
|
|
|
|
|
public Int16 ChargingInterfaceDetectionTwoTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电接口温度探头 4
|
|
|
|
|
/// 充电接口温度探头 3
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(232, 8, PropertyReadConstant.Bit, 1, 0, 50)]
|
|
|
|
|
public Int16 ChargingInterfaceDetectionTheTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电接口温度探头 4
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(232 + 8, 8, PropertyReadConstant.Bit, 1, 0, 50)]
|
|
|
|
|
public Int16 ChargingInterfaceDetectionFourTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 直流电表当前电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(240, 32, PropertyReadConstant.Bit, 0.01, 2)]
|
|
|
|
|
[Property(240 + 8, 32, PropertyReadConstant.Bit, 0.01, 2)]
|
|
|
|
|
public float DcMeterCurrentPower { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电电压(直流电表电压)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(272, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
[Property(272 + 8, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
public float DcMeterVoltage { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电电流(直流电表电流)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(288, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
[Property(288 + 8, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
public float DcMeterCurrent { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 高压采集电压
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(304, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
[Property(304 + 8, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
public float HighVoltageAcquisitionVoltage { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 高压采集电流
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(320, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
[Property(320 + 8, 16, PropertyReadConstant.Bit, 0.1, 1)]
|
|
|
|
|
public float HighVoltageAcquisitionCurrent { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 桩内部温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(336, 8, PropertyReadConstant.Bit, 1, 0)]
|
|
|
|
|
[Property(336 + 8, 8, PropertyReadConstant.Bit, 1, 0)]
|
|
|
|
|
public byte ChargerInsideTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 本次充电时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(344, 16)]
|
|
|
|
|
[Property(344 + 8, 16)]
|
|
|
|
|
public ushort ChargingTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模块进风口温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(360, 8)]
|
|
|
|
|
[Property(360 + 8, 8)]
|
|
|
|
|
public byte ModuleOneAirInletTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模块出风口温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(368, 8)]
|
|
|
|
|
[Property(368 + 8, 8)]
|
|
|
|
|
public byte ModuleTwoAirInletTemp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电模式 0:站内充电 1:站外充电
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(376, 8)]
|
|
|
|
|
[Property(376 + 8, 8)]
|
|
|
|
|
public byte ChargeModel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电启动方式 1:站控启动 2:本地充电
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
[Property(384, 8)]
|
|
|
|
|
[Property(384 + 8, 8)]
|
|
|
|
|
public byte ChargingStartMethod { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 交流电表当前电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Property(392, 32, PropertyReadConstant.Bit, 0.01, 2)]
|
|
|
|
|
[Property(392 + 8, 32, PropertyReadConstant.Bit, 0.01, 2)]
|
|
|
|
|
public float ACMeterCurrentBatteryValue { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|