From 16cb9fa7892122d33c6213a004a5e24f0825a230 Mon Sep 17 00:00:00 2001 From: xjl <2595686544@qq.com> Date: Fri, 17 May 2024 15:15:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E8=A7=A3=E5=81=8F=E7=A7=BB=E6=9B=B4?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Charger/Msg/Charger/Req/StopCharging.cs | 4 ++-- .../Msg/Charger/Req/UploadTelemetryData.cs | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Service/Charger/Msg/Charger/Req/StopCharging.cs b/Service/Charger/Msg/Charger/Req/StopCharging.cs index 09f550e..ee8e140 100644 --- a/Service/Charger/Msg/Charger/Req/StopCharging.cs +++ b/Service/Charger/Msg/Charger/Req/StopCharging.cs @@ -64,13 +64,13 @@ namespace Service.Charger.Msg.Charger.Req /// ///动力蓄电池最低温度(ºC) /// - [Property(96, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(96, 8, PropertyReadConstant.Bit, 1, 0, 50)] public float MinimumTemperatureOfTractionBattery { get; set; } /// ///动力蓄电池最高温度(ºC) /// - [Property(104, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(104, 8, PropertyReadConstant.Bit, 1, 0, 50)] public byte MaximumTemperatureOfTractionBattery { get; set; } /// diff --git a/Service/Charger/Msg/Charger/Req/UploadTelemetryData.cs b/Service/Charger/Msg/Charger/Req/UploadTelemetryData.cs index 386977b..b2ee1c2 100644 --- a/Service/Charger/Msg/Charger/Req/UploadTelemetryData.cs +++ b/Service/Charger/Msg/Charger/Req/UploadTelemetryData.cs @@ -16,7 +16,7 @@ namespace Service.Charger.Msg.Charger.Req /// /// 最高蓄电池温度 /// - [Property(8, 2, PropertyReadConstant.Byte, 1, 0, -50)] + [Property(8, 2, PropertyReadConstant.Byte, 1, 0, 50)] public Int16 MaxBatteryTemp { get; set; } /// @@ -28,7 +28,7 @@ namespace Service.Charger.Msg.Charger.Req /// /// 最低蓄电池温度 /// - [Property(40, 16, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(40, 16, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 MinBatteryTemp { get; set; } /// @@ -52,7 +52,7 @@ namespace Service.Charger.Msg.Charger.Req /// /// 充电机环境温度 /// - [Property(104, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(104, 8, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 ChargerEnvTemp { get; set; } /// @@ -70,7 +70,7 @@ namespace Service.Charger.Msg.Charger.Req /// /// BMS 需求电流 /// - [Property(144, 16, PropertyReadConstant.Bit, 0.1, 1, -400)] + [Property(144, 16, PropertyReadConstant.Bit, 0.1, 1, 400)] public float BmsNeedCurrent { get; set; } /// @@ -88,7 +88,7 @@ namespace Service.Charger.Msg.Charger.Req /// /// BMS 充电电流测量值 /// - [Property(184, 16, PropertyReadConstant.Bit, 0.1, 1, -400)] + [Property(184, 16, PropertyReadConstant.Bit, 0.1, 1, 400)] public float BmsChargingCurrent { get; set; } /// @@ -100,19 +100,19 @@ namespace Service.Charger.Msg.Charger.Req /// /// 充电接口温度探头 1 /// - [Property(216, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(216, 8, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 ChargingInterfaceDetectionOneTemp { get; set; } /// /// 充电接口温度探头 2 /// - [Property(224, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(224, 8, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 ChargingInterfaceDetectionTwoTemp { get; set; } /// /// 充电接口温度探头 4 /// - [Property(232, 8, PropertyReadConstant.Bit, 1, 0, -50)] + [Property(232, 8, PropertyReadConstant.Bit, 1, 0, 50)] public Int16 ChargingInterfaceDetectionFourTemp { get; set; } ///