diff --git a/Service/Charger/Msg/Charger/OutCharger/Req/PileUploadTelemetry.cs b/Service/Charger/Msg/Charger/OutCharger/Req/PileUploadTelemetry.cs index 15e7a08..f3f60d3 100644 --- a/Service/Charger/Msg/Charger/OutCharger/Req/PileUploadTelemetry.cs +++ b/Service/Charger/Msg/Charger/OutCharger/Req/PileUploadTelemetry.cs @@ -125,81 +125,86 @@ public class PileUploadTelemetry : ASDU public Int16 ChargingInterfaceDetectionTwoTemp { get; set; } /// - /// 充电接口温度探头 4 + /// 充电接口温度探头 3 /// [Property(248, 8, PropertyReadConstant.Bit, 1, 0, 50)] + public Int16 ChargingInterfaceDetectionTheTemp { get; set; } + /// + /// 充电接口温度探头 4 + /// + [Property(248+8, 8, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 ChargingInterfaceDetectionFourTemp { get; set; } /// /// 直流电表当前电量 /// - [Property(256, 32, PropertyReadConstant.Bit, 0.01, 2)] + [Property(256+8, 32, PropertyReadConstant.Bit, 0.01, 2)] public float DcMeterCurrentPower { get; set; } /// /// 充电电压(直流电表电压) /// - [Property(288, 16, PropertyReadConstant.Bit, 0.1, 1)] + [Property(288+8, 16, PropertyReadConstant.Bit, 0.1, 1)] public float DcMeterVoltage { get; set; } /// /// 充电电流(直流电表电流) /// - [Property(304, 16, PropertyReadConstant.Bit, 0.1, 1)] + [Property(304+8, 16, PropertyReadConstant.Bit, 0.1, 1)] public float DcMeterCurrent { get; set; } /// /// 高压采集电压 /// - [Property(320, 16, PropertyReadConstant.Bit, 0.1, 1)] + [Property(320+8, 16, PropertyReadConstant.Bit, 0.1, 1)] public float HighVoltageAcquisitionVoltage { get; set; } /// /// 高压采集电流 /// - [Property(336, 16, PropertyReadConstant.Bit, 0.1, 1)] + [Property(336+8, 16, PropertyReadConstant.Bit, 0.1, 1)] public float HighVoltageAcquisitionCurrent { get; set; } /// /// 桩内部温度 /// - [Property(352, 8, PropertyReadConstant.Bit, 1, 0)] + [Property(352+8, 8, PropertyReadConstant.Bit, 1, 0)] public byte ChargerInsideTemp { get; set; } /// /// 本次充电时间 /// - [Property(360, 16)] + [Property(360+8, 16)] public ushort ChargingTime { get; set; } /// /// 模块进风口温度 /// - [Property(376, 8)] + [Property(376+8, 8)] public byte ModuleOneAirInletTemp { get; set; } /// /// 模块出风口温度 /// - [Property(384, 8)] + [Property(384+8, 8)] public byte ModuleTwoAirInletTemp { get; set; } /// /// 充电模式 0:站内充电 1:站外充电 /// - [Property(392, 8)] + [Property(392+8, 8)] public byte ChargeModel { get; set; } /// /// 充电启动方式 1:站控启动 2:本地充电 /// - [Property(400, 8)] + [Property(400+8, 8)] public byte ChargingStartMethod { get; set; } /// /// 交流电表当前电量 /// - [Property(408, 32, PropertyReadConstant.Bit, 0.01, 2)] + [Property(408+8, 32, PropertyReadConstant.Bit, 0.01, 2)] public float ACMeterCurrentBatteryValue { get; set; } } \ No newline at end of file