From 8236caa8042288fcb9b584c21d6157f713183626 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 13 二月 2025 16:36:01 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryEquipChargeStatusResult.java | 150 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 150 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryEquipChargeStatusResult.java b/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryEquipChargeStatusResult.java new file mode 100644 index 0000000..a5b94fb --- /dev/null +++ b/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryEquipChargeStatusResult.java @@ -0,0 +1,150 @@ +package com.ruoyi.integration.drainage.model; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import javax.validation.constraints.Null; +import java.math.BigDecimal; +import java.util.List; + +/** + * 查询充电状态结果 + * @author zhibing.pu + * @Date 2025/1/21 15:58 + */ +@Data +public class QueryEquipChargeStatusResult { + /** + * 充电订单号 + */ + @NotNull + @JsonProperty("StartChargeSeq") + private String startChargeSeq; + /** + * 充电订单状态 + * 1:启动中 + * 2:充电中 + * 3:停止中 + * 4:已结束 + * 5:未知 + */ + @NotNull + @JsonProperty("StartChargeSeqStat") + private Integer startChargeSeqStat; + /** + * 充电设备接口编号 + */ + @NotNull + @JsonProperty("ConnectorID") + private String connectorID; + /** + * 充电设备接口状态 + * 1:空闲 + * 2:占用(未充电) + * 3:占用(充电中) + * 4:占用(预约锁定) + * 255:故障 + */ + @NotNull + @JsonProperty("ConnectorStatus") + private Integer connectorStatus; + /** + * A相电流 + */ + @NotNull + @JsonProperty("CurrentA") + private BigDecimal currentA; + /** + * B相电流 + */ + @Null + @JsonProperty("CurrentB") + private BigDecimal currentB; + /** + * C相电流 + */ + @Null + @JsonProperty("CurrentC") + private BigDecimal currentC; + /** + * A相电压 + */ + @NotNull + @JsonProperty("VoltageA") + private BigDecimal voltageA; + /** + * B相电压 + */ + @Null + @JsonProperty("VoltageB") + private BigDecimal voltageB; + /** + * C相电压 + */ + @Null + @JsonProperty("VoltageC") + private BigDecimal voltageC; + /** + * 电池剩余电量 + */ + @NotNull + @JsonProperty("Soc") + private BigDecimal soc; + /** + * 开始充电时间 + */ + @NotNull + @JsonProperty("StartTime") + private String startTime; + /** + * 本次采样时间 + */ + @NotNull + @JsonProperty("EndTime") + private String endTime; + /** + * 累计充电量 + */ + @NotNull + @JsonProperty("TotalPower") + private BigDecimal totalPower; + /** + * 累计电费 + */ + @Null + @JsonProperty("ElecMoney") + private BigDecimal elecMoney; + /** + * 累计服务费 + */ + @Null + @JsonProperty("SeviceMoney") + private BigDecimal seviceMoney; + /** + * 累计总金额 + */ + @Null + @JsonProperty("TotalMoney") + private BigDecimal totalMoney; + /** + * 时段数N + * 0`32 + */ + @Null + @JsonProperty("SumPeriod") + private Integer sumPeriod; + /** + * 充电明细信息 + */ + @Null + @JsonProperty("ChargeDetails") + private List<ChargeDetail> chargeDetails; + /** + * 车辆识别码 + */ + @Null + @JsonProperty("VIN") + private String VIN; + +} -- Gitblit v1.7.1