update 第三方平台接口

This commit is contained in:
Lemon
2023-10-31 14:31:42 +08:00
parent babcc5cedd
commit f250ff3ca1
8 changed files with 304 additions and 13 deletions

View File

@@ -17,14 +17,14 @@ public class QueryEquipmentDTO {
* 27 字符
*/
@JsonProperty(value = "EquipAuthSeq")
private String EquipAuthSeq;
private String equipAuthSeq;
/**
* 充电设备接口编码
*/
@JsonProperty(value = "ConnectorID")
private String ConnectorID;
private String connectorID;
@JsonProperty(value = "OperatorID")
private String OperatorID;
private String operatorID;
}

View File

@@ -15,32 +15,32 @@ public class QueryStartChargeDTO {
* 充电订单号
*/
@JsonProperty(value = "StartChargeSeq")
private String StartChargeSeq;
private String startChargeSeq;
/**
* 充电设备接口编码
*/
@JsonProperty(value = "ConnectorID")
private String ConnectorID;
private String connectorID;
/**
* 二维码
*/
@JsonProperty(value = "QRCode")
private String QRCode;
private String qrCode;
/**
* 用户手机号
*/
@JsonProperty(value = "PhoneNum")
private String PhoneNum;
private String phoneNum;
/**
* 车牌号
*/
@JsonProperty(value = "PlateNum")
private String PlateNum;
private String plateNum;
@JsonProperty(value = "OperatorID")
private String OperatorID;
private String operatorId;
}