This commit is contained in:
2023-03-18 15:57:07 +08:00
5 changed files with 105 additions and 19 deletions

View File

@@ -16,40 +16,60 @@ public class SendMessageVO {
/**
* 订单号
*/
public String orderCode;
private String orderCode;
/**
* 站点名称
*/
public String stationName;
private String stationName;
/**
* 充电开始时间
*/
public String chargeStartTime;
private String chargeStartTime;
/**
* 站点Id
*/
public String stationId;
private String stationId;
/**
* 订单金额
*/
public String orderAmount;
private String orderAmount;
/**
* 用户openId
*/
public String openId;
private String openId;
/**
* 充电结束时间
*/
public String chargeStopTime;
private String chargeStopTime;
/**
* 充电停止原因
*/
public String stopReason;
private String stopReason;
/**
* 枪口号
*/
private String pileConnectorCode;
/**
* 桩编码
*/
private String pileSn;
/**
* 枪口号
*/
private String connectorCode;
/**
* 充电度数
*/
private String chargingDegree;
}