mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-05 14:38:06 +08:00
update 修复占桩订单导出功能
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
package com.jsowell.pile.vo.web;
|
package com.jsowell.pile.vo.web;
|
||||||
|
|
||||||
|
import com.jsowell.common.annotation.Excel;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
@@ -13,16 +14,36 @@ import java.math.BigDecimal;
|
|||||||
@Data
|
@Data
|
||||||
public class OccupyOrderVO {
|
public class OccupyOrderVO {
|
||||||
private String id;
|
private String id;
|
||||||
|
@Excel(name = "占桩订单号")
|
||||||
private String occupyCode;
|
private String occupyCode;
|
||||||
|
|
||||||
private String status;
|
private String status;
|
||||||
|
|
||||||
|
@Excel(name = "会员ID")
|
||||||
private String memberId;
|
private String memberId;
|
||||||
|
|
||||||
private String stationId;
|
private String stationId;
|
||||||
|
|
||||||
private String plateNumber;
|
private String plateNumber;
|
||||||
|
|
||||||
|
@Excel(name = "站点名称")
|
||||||
private String stationName;
|
private String stationName;
|
||||||
|
|
||||||
|
@Excel(name = "占桩开始时间")
|
||||||
private String startTime;
|
private String startTime;
|
||||||
|
|
||||||
|
@Excel(name = "占桩结束时间")
|
||||||
private String endTime;
|
private String endTime;
|
||||||
|
|
||||||
|
@Excel(name = "支付状态")
|
||||||
private String payStatus;
|
private String payStatus;
|
||||||
|
|
||||||
|
@Excel(name = "订单金额")
|
||||||
private BigDecimal orderAmount;
|
private BigDecimal orderAmount;
|
||||||
|
|
||||||
|
@Excel(name = "充电桩编号")
|
||||||
private String pileSn;
|
private String pileSn;
|
||||||
|
|
||||||
|
@Excel(name = "充电桩枪口号")
|
||||||
private String connectorCode;
|
private String connectorCode;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user