mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
47 lines
845 B
Java
47 lines
845 B
Java
package com.jsowell.pile.dto;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 请求启动充电DTO
|
|
*
|
|
* @author JS-ZZA
|
|
* @date 2023/4/24 14:04
|
|
*/
|
|
@Data
|
|
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;
|
|
|
|
@JsonProperty(value = "OperatorID")
|
|
private String OperatorID;
|
|
}
|