From 94c9abb9e122a005a5bbf89f105e5899fcb2eaa0 Mon Sep 17 00:00:00 2001 From: CZ Date: Tue, 13 Aug 2024 10:39:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AB=99=E5=A4=96=E5=85=85=E7=94=B5=E6=A1=A9?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=B8=A7=E6=95=B0=E6=8D=AE=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OutCharger/Req/PileUploadTelemetry.cs | 31 +++++++++++-------- 1 file changed, 18 insertions(+), 13 deletions(-) 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