mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 14:05:04 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@ import java.math.BigDecimal;
|
||||
* @Date 2024/1/23 14:34:58
|
||||
*/
|
||||
@Data
|
||||
public class QueryStartChargeDTO {
|
||||
public class HWQueryStartChargeDTO {
|
||||
/**
|
||||
* 充电订单号 Y
|
||||
* 格式“运营商ID+唯一编号”(<=27字符)。
|
||||
@@ -61,4 +61,7 @@ public class QueryStartChargeDTO {
|
||||
*/
|
||||
@JsonProperty(value = "SOCLimit")
|
||||
private BigDecimal socLimit;
|
||||
|
||||
|
||||
private String operatorId;
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
package com.jsowell.pile.dto.huawei;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 接收启动充电结果DTO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2024/1/26 14:23:23
|
||||
*/
|
||||
@Data
|
||||
public class ReceiveStartChargeResultDTO {
|
||||
|
||||
/**
|
||||
* 充电订单号
|
||||
*/
|
||||
@JsonProperty(value = "StartChargeSeq")
|
||||
private String startChargeSeq;
|
||||
|
||||
/**
|
||||
* 充电订单状态
|
||||
*/
|
||||
@JsonProperty(value = "StartChargeSeqStat")
|
||||
private Integer startChargeSeqStat;
|
||||
|
||||
/**
|
||||
* 充电设备接口编码
|
||||
*/
|
||||
@JsonProperty(value = "ConnectorID")
|
||||
private String connectorID;
|
||||
|
||||
/**
|
||||
* 充电启动时间
|
||||
*/
|
||||
@JsonProperty(value = "StartTime")
|
||||
private String startTime;
|
||||
|
||||
/**
|
||||
* 停止充电验证码
|
||||
*/
|
||||
@JsonProperty(value = "IdentCode")
|
||||
private String identCode;
|
||||
|
||||
/**
|
||||
* 启动失败原因
|
||||
*/
|
||||
@JsonProperty(value = "FailReason")
|
||||
private Integer failReason;
|
||||
}
|
||||
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
* @Date 2024/1/23 15:32:25
|
||||
*/
|
||||
@Data
|
||||
public class requestEquipBusinessPolicyDTO {
|
||||
public class RequestEquipBusinessPolicyDTO {
|
||||
/**
|
||||
* 业务策略查询流水号
|
||||
*/
|
||||
Reference in New Issue
Block a user