From 717a905e74a43ebac969a3869c3fc38ca2678a73 Mon Sep 17 00:00:00 2001 From: xjl <2595686544@qq.com> Date: Wed, 19 Jun 2024 14:41:17 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E4=BB=93=E4=BD=8D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E6=8E=A5=E5=8F=A3=E5=A2=9E=E5=8A=A04=E4=B8=AA?= =?UTF-8?q?=E5=85=85=E7=94=B5=E6=8E=A5=E5=8F=A3=E6=B8=A9=E5=BA=A6=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Entity/Dto/Resp/BinInfoResp.cs | 20 +++++++++++++++++++- Service/Station/BinInfoService.cs | 6 ++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/Entity/Dto/Resp/BinInfoResp.cs b/Entity/Dto/Resp/BinInfoResp.cs index c6a58de..9089a85 100644 --- a/Entity/Dto/Resp/BinInfoResp.cs +++ b/Entity/Dto/Resp/BinInfoResp.cs @@ -1,4 +1,6 @@ -namespace Entity.Dto.Resp; +using HybirdFrameworkCore.Autofac.Attribute; + +namespace Entity.Dto.Resp; public partial class BinInfoResp { @@ -271,4 +273,20 @@ public partial class BinInfoResp /// Nullable: /// public int Exists { get; set; } + /// + /// 充电接口温度探头 1 + /// + public Int16 ChargingInterfaceDetectionOneTemp { get; set; } + /// + /// 充电接口温度探头 2 + /// + public Int16 ChargingInterfaceDetectionTwoTemp { get; set; } + /// + /// 充电接口温度探头 3 + /// + public Int16 ChargingInterfaceDetectionTheTemp { get; set; } + /// + /// 充电接口温度探头 4 + /// + public Int16 ChargingInterfaceDetectionFourTemp { get; set; } } \ No newline at end of file diff --git a/Service/Station/BinInfoService.cs b/Service/Station/BinInfoService.cs index 7db25e1..fef3032 100644 --- a/Service/Station/BinInfoService.cs +++ b/Service/Station/BinInfoService.cs @@ -52,6 +52,12 @@ public class BinInfoService : BaseServices binInfoResp.ChargingStartTime = chargerClient.ChargingStartTime; binInfoResp.ChargingStopTime = chargerClient.ChargingStopTime; binInfoResp.IsAuthed = chargerClient.IsAuthed; + + binInfoResp.ChargingInterfaceDetectionOneTemp = chargerClient.UploadTelemetryData.ChargingInterfaceDetectionOneTemp; + binInfoResp.ChargingInterfaceDetectionTwoTemp = chargerClient.UploadTelemetryData.ChargingInterfaceDetectionTwoTemp; + binInfoResp.ChargingInterfaceDetectionTheTemp = chargerClient.UploadTelemetryData.ChargingInterfaceDetectionTheTemp; + binInfoResp.ChargingInterfaceDetectionFourTemp = chargerClient.UploadTelemetryData.ChargingInterfaceDetectionFourTemp; + } }