|
|
@@ -65,6 +65,51 @@ public class ChargingStatusQueryResponseVO {
|
|
|
@JsonProperty("TotalMoney")
|
|
|
private BigDecimal TotalMoney;
|
|
|
|
|
|
+ @Schema(description = "A相电流,单位:A",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("CurrentA")
|
|
|
+ private BigDecimal CurrentA;
|
|
|
+
|
|
|
+ @Schema(description = "B相电流,单位:A",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("CurrentB")
|
|
|
+ private BigDecimal CurrentB;
|
|
|
+
|
|
|
+ @Schema(description = "C相电流,单位:A",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("CurrentC")
|
|
|
+ private BigDecimal CurrentC;
|
|
|
+
|
|
|
+ @Schema(description = "A相电压,单位:V",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("VoltageA")
|
|
|
+ private BigDecimal VoltageA;
|
|
|
+
|
|
|
+ @Schema(description = "B相电压,单位:V",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("VoltageB")
|
|
|
+ private BigDecimal VoltageB;
|
|
|
+
|
|
|
+ @Schema(description = "C相电压,单位:V",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("VoltageC")
|
|
|
+ private BigDecimal VoltageC;
|
|
|
+
|
|
|
+ @Schema(description = "电池SOC(剩余电量百分比)",
|
|
|
+ example = "0.0")
|
|
|
+ @JsonProperty("Soc")
|
|
|
+ private BigDecimal Soc;
|
|
|
+
|
|
|
+ @Schema(description = "充电开始时间,格式\"yyyy-MM-dd HH:mm:ss\"",
|
|
|
+ example = "2025-12-05 09:40:07")
|
|
|
+ @JsonProperty("StartTime")
|
|
|
+ private String StartTime;
|
|
|
+
|
|
|
+ @Schema(description = "充电结束时间,格式\"yyyy-MM-dd HH:mm:ss\"",
|
|
|
+ example = "2025-12-05 09:41:52")
|
|
|
+ @JsonProperty("EndTime")
|
|
|
+ private String EndTime;
|
|
|
+
|
|
|
@Schema(description = "充电明细信息体列表",
|
|
|
required = true)
|
|
|
@JsonProperty("ChargeDetails")
|