2023-04-25 11:20:43 +08:00
|
|
|
|
package com.jsowell.pile.dto;
|
|
|
|
|
|
|
2023-04-25 14:03:09 +08:00
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
2023-11-07 14:08:36 +08:00
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
2023-04-25 11:20:43 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 请求启动充电DTO
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author JS-ZZA
|
|
|
|
|
|
* @date 2023/4/24 14:04
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
public class QueryStartChargeDTO {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 充电订单号
|
|
|
|
|
|
*/
|
2023-04-25 14:03:09 +08:00
|
|
|
|
@JsonProperty(value = "StartChargeSeq")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String startChargeSeq;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
|
2024-01-03 16:58:34 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 业务策略查询流水号
|
|
|
|
|
|
*/
|
|
|
|
|
|
@JsonProperty(value = "EquipBizSeq")
|
|
|
|
|
|
private String equipBizSeq;
|
|
|
|
|
|
|
2023-04-25 11:20:43 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 充电设备接口编码
|
|
|
|
|
|
*/
|
2023-04-25 14:03:09 +08:00
|
|
|
|
@JsonProperty(value = "ConnectorID")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String connectorID;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 二维码
|
|
|
|
|
|
*/
|
2023-04-25 14:03:09 +08:00
|
|
|
|
@JsonProperty(value = "QRCode")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String qrCode;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 用户手机号
|
|
|
|
|
|
*/
|
2023-04-25 14:03:09 +08:00
|
|
|
|
@JsonProperty(value = "PhoneNum")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String phoneNum;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 车牌号
|
|
|
|
|
|
*/
|
2023-04-25 14:03:09 +08:00
|
|
|
|
@JsonProperty(value = "PlateNum")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String plateNum;
|
2023-05-31 14:43:58 +08:00
|
|
|
|
|
|
|
|
|
|
@JsonProperty(value = "OperatorID")
|
2023-10-31 14:31:42 +08:00
|
|
|
|
private String operatorId;
|
2023-11-07 14:08:36 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 可充电金额
|
|
|
|
|
|
*/
|
|
|
|
|
|
@JsonProperty(value = "AccountBalance")
|
|
|
|
|
|
private BigDecimal accountBalance;
|
2024-01-09 17:29:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------- 新电途平台接口拓展字段------------------
|
2024-01-10 10:53:14 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 预充金额,电量充到该金额自动停止。单位(元)
|
|
|
|
|
|
*/
|
2024-01-09 17:29:25 +08:00
|
|
|
|
private BigDecimal chargingAmt;
|
2024-01-10 10:53:14 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 司机在合作公司的唯一标识(手机号),方便维护订单信息
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String driverId;
|
2024-03-20 10:36:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 支付方式(1-余额支付;3-白名单支付;4-微信支付;5-支付宝支付)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String payMode;
|
2023-04-25 11:20:43 +08:00
|
|
|
|
}
|