This commit is contained in:
Lemon
2024-01-26 16:39:46 +08:00
parent ca036b0646
commit 49e725983e
10 changed files with 454 additions and 17 deletions

View File

@@ -0,0 +1,173 @@
package com.jsowell.pile.vo.huawei;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
/**
* TODO
*
* @author Lemon
* @Date 2024/1/26 16:29:29
*/
@Data
public class QueryChargeStatusVO {
/**
*
*/
@JsonProperty(value = "StartChargeSeq")
private String startChargeSeq;
/**
*
*/
@JsonProperty(value = "StartChargeSeqStat")
private String startChargeSeqStat;
/**
*
*/
@JsonProperty(value = "ConnectorID")
private String connectorID;
/**
*
*/
@JsonProperty(value = "ConnectorStatus")
private String connectorStatus;
/**
*
*/
@JsonProperty(value = "CurrentA")
private String currentA;
/**
*
*/
@JsonProperty(value = "CurrentB")
private String currentB;
/**
*
*/
@JsonProperty(value = "CurrentC")
private String currentC;
/**
*
*/
@JsonProperty(value = "VoltageA")
private String voltageA;
/**
*
*/
@JsonProperty(value = "VoltageB")
private String voltageB;
/**
*
*/
@JsonProperty(value = "VoltageC")
private String voltageC;
/**
*
*/
@JsonProperty(value = "Soc")
private String soc;
/**
*
*/
@JsonProperty(value = "StartTime")
private String startTime;
/**
*
*/
@JsonProperty(value = "EndTime")
private String endTime;
/**
*
*/
@JsonProperty(value = "TotalPower")
private String totalPower;
/**
*
*/
@JsonProperty(value = "ElecMoney")
private String elecMoney;
/**
*
*/
@JsonProperty(value = "SeviceMoney")
private String seviceMoney;
/**
*
*/
@JsonProperty(value = "TotalMoney")
private String totalMoney;
/**
*
*/
@JsonProperty(value = "SumPeriod")
private String sumPeriod;
/**
*
*/
@JsonProperty(value = "ChargeDetails")
private List<ChargeDetail> chargeDetails;
@Data
public static class ChargeDetail{
/**
*
*/
@JsonProperty(value = "DetailStartTime")
private String detailStartTime;
/**
*
*/
@JsonProperty(value = "DetailEndTime")
private String detailEndTime;
/**
*
*/
@JsonProperty(value = "ElecPrice")
private String elecPrice;
/**
*
*/
@JsonProperty(value = "SevicePrice")
private String sevicePrice;
/**
*
*/
@JsonProperty(value = "DetailPower")
private String detailPower;
/**
*
*/
@JsonProperty(value = "DetailElecMoney")
private String detailElecMoney;
@JsonProperty(value = "DetailSeviceMoney")
private String detailSeviceMoney;
}
}