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; }
///