add 联联平台请求停止充电接口

This commit is contained in:
Lemon
2023-04-25 14:03:09 +08:00
parent c584ff91f4
commit ea34f51849
6 changed files with 130 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
package com.jsowell.pile.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
@@ -13,25 +14,30 @@ public class QueryStartChargeDTO {
/**
* 充电订单号
*/
@JsonProperty(value = "StartChargeSeq")
private String StartChargeSeq;
/**
* 充电设备接口编码
*/
@JsonProperty(value = "ConnectorID")
private String ConnectorID;
/**
* 二维码
*/
@JsonProperty(value = "QRCode")
private String QRCode;
/**
* 用户手机号
*/
@JsonProperty(value = "PhoneNum")
private String PhoneNum;
/**
* 车牌号
*/
@JsonProperty(value = "PlateNum")
private String PlateNum;
}