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