联联平台 查询充电状态接口

This commit is contained in:
Lemon
2023-04-25 11:20:43 +08:00
parent 810c4381f4
commit c584ff91f4
5 changed files with 312 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 请求启动充电DTO
*
* @author JS-ZZA
* @date 2023/4/24 14:04
*/
@Data
public class QueryStartChargeDTO {
/**
* 充电订单号
*/
private String StartChargeSeq;
/**
* 充电设备接口编码
*/
private String ConnectorID;
/**
* 二维码
*/
private String QRCode;
/**
* 用户手机号
*/
private String PhoneNum;
/**
* 车牌号
*/
private String PlateNum;
}