Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/QueryStartChargeDTO.java

121 lines
2.3 KiB
Java
Raw Normal View History

2023-04-25 11:20:43 +08:00
package com.jsowell.pile.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
2023-04-25 11:20:43 +08:00
import lombok.Data;
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 {
/**
* 充电订单号
*/
@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
/**
* 充电设备接口编码
*/
@JsonProperty(value = "ConnectorID")
2023-10-31 14:31:42 +08:00
private String connectorID;
2023-04-25 11:20:43 +08:00
/**
* 二维码
*/
@JsonProperty(value = "QRCode")
2023-10-31 14:31:42 +08:00
private String qrCode;
2023-04-25 11:20:43 +08:00
/**
* 用户手机号
*/
@JsonProperty(value = "PhoneNum")
2023-10-31 14:31:42 +08:00
private String phoneNum;
2023-04-25 11:20:43 +08:00
/**
* 车牌号
*/
@JsonProperty(value = "PlateNum")
2023-10-31 14:31:42 +08:00
private String plateNum;
@JsonProperty(value = "OperatorID")
2023-10-31 14:31:42 +08:00
private String operatorId;
/**
* 可充电金额
*/
@JsonProperty(value = "AccountBalance")
private BigDecimal accountBalance;
2024-01-09 17:29:25 +08:00
// ----------------- 新电途平台接口拓展字段------------------
/**
* 预充金额电量充到该金额自动停止单位()
*/
2024-01-09 17:29:25 +08:00
private BigDecimal chargingAmt;
/**
* 司机在合作公司的唯一标识(手机号)方便维护订单信息
*/
private String driverId;
/**
* 支付方式(1-余额支付3-白名单支付4-微信支付5-支付宝支付)
*/
private String payMode;
2024-12-25 14:40:57 +08:00
/**
* 查询页码
*/
@JsonProperty(value = "PageNo")
private Integer pageNo;
/**
* 每页数量
*/
@JsonProperty(value = "PageSize")
private Integer pageSize;
/**
* 上次查询时间
*/
@JsonProperty(value = "LastQueryTime")
private String lastQueryTime;
/**
* 上次查询结束时间
*/
@JsonProperty(value = "LastQueryEndTime")
private String lastQueryEndTime;
/**
* 充电订单号 格式运营商ID+唯一编号
*/
2025-07-11 16:44:36 +08:00
@JsonProperty(value = "OrderNo")
private String orderNo;
2025-09-28 16:18:24 +08:00
/**
* 经度
*/
@JsonProperty(value = "Latitude")
private BigDecimal longitude;
/**
* 纬度
*/
@JsonProperty(value = "Longitude")
private BigDecimal latitude;
2023-04-25 11:20:43 +08:00
}