update 微信小程序启动充电/结束充电发送推送消息

This commit is contained in:
Lemon
2023-03-18 15:32:29 +08:00
parent 6b3f593f3f
commit 3cad5c6135
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;
}