diff --git a/Entity/Dto/Resp/BinInfoResp.cs b/Entity/Dto/Resp/BinInfoResp.cs index a290780..a4ebc3d 100644 --- a/Entity/Dto/Resp/BinInfoResp.cs +++ b/Entity/Dto/Resp/BinInfoResp.cs @@ -259,4 +259,10 @@ public partial class BinInfoResp /// Nullable: /// public DateTime? ChargingStopTime { get; set; } + + + /// + /// 是否鉴权 + /// + public bool IsAuthed { get; set; } } \ No newline at end of file diff --git a/Service/Station/BinInfoService.cs b/Service/Station/BinInfoService.cs index e13164f..7db25e1 100644 --- a/Service/Station/BinInfoService.cs +++ b/Service/Station/BinInfoService.cs @@ -51,6 +51,7 @@ public class BinInfoService : BaseServices binInfoResp.CellTemperatureMin = chargerClient.BatteryPackDataVoltage.CellTemperatureMin; binInfoResp.ChargingStartTime = chargerClient.ChargingStartTime; binInfoResp.ChargingStopTime = chargerClient.ChargingStopTime; + binInfoResp.IsAuthed = chargerClient.IsAuthed; } }