mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user