后管订单列表页和订单详情页新增 启动卡号字段

This commit is contained in:
Lemon
2023-03-30 08:56:10 +08:00
parent 7c604ec02c
commit e98b3a8acf
8 changed files with 20 additions and 0 deletions

View File

@@ -79,6 +79,12 @@ public class OrderBasicInfo extends BaseEntity {
@Excel(name = "充电桩枪口编号")
private String pileConnectorCode;
/**
* 逻辑卡号
*/
@Excel(name = "逻辑卡号")
private String logicCard;
/**
* 启动方式
* 0-后管启动1-用户app启动

View File

@@ -63,6 +63,7 @@ public class OrderDetailInfoVO {
private String transactionCode; // 交易流水号
private String orderStatus; // 订单状态
private String orderStatusDescribe; // 订单状态描述
private String logicCard; // 卡号
private String startTime; // 充电开始时间
private String endTime; // 充电结束时间
private String stopReasonMsg; // 停止原因

View File

@@ -90,6 +90,12 @@ public class OrderListVO {
@Excel(name = "充电桩枪口编号")
private String pileConnectorCode;
/**
* 逻辑卡号
*/
@Excel(name = "逻辑卡号")
private String logicCard;
/**
* 启动方式0-后管启动1-用户app启动
*/