diff --git a/Entity/Dto/Resp/BinInfoResp.cs b/Entity/Dto/Resp/BinInfoResp.cs index dbc7115..2f57a2d 100644 --- a/Entity/Dto/Resp/BinInfoResp.cs +++ b/Entity/Dto/Resp/BinInfoResp.cs @@ -159,9 +159,27 @@ public partial class BinInfoResp /// Nullable:True /// public DateTime? UpdatedTime { get; set; } + /// /// 功率 /// public float power { get; set; } + + /// + /// 缓存仓标记 0:不是 1:是 + /// + public int CacheBinFlag { get; set; } + + + /// + /// 换电禁用标志 0:不可换电 1:可以换电 + /// + public int CanSwapFlag { get; set; } + + + /// + /// 充电禁用标志 0:不可充电 1:可以充电 + /// + public int CanChargeFlag { get; set; } } \ No newline at end of file