package com.ruoyi.order.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
@ApiModel(value="充电订单Order导出对象")
|
public class ChargeOrderExport {
|
// 订单编号
|
@Excel(name = "订单编号", width = 20)
|
private String orderNumber;
|
// 订单类型
|
@Excel(name = "订单类型", width = 20)
|
private String orderType;
|
// 充电方式
|
@Excel(name = "充电方式", width = 20)
|
private String chargeType;
|
// 充电用户
|
@Excel(name = "充电用户", width = 20)
|
private String phone;
|
// 开始时间
|
@Excel(name = "开始时间", width = 20)
|
private String beginTime;
|
// 结束时间
|
@Excel(name = "结束时间", width = 20)
|
private String endTime;
|
// 充电时长
|
@Excel(name = "充电时长", width = 20)
|
private String chargingDuration;
|
// 充电电量
|
@Excel(name = "充电电量", width = 20)
|
private BigDecimal chargingCapacity;
|
// 电站运营商
|
@Excel(name = "电站运营商", width = 20)
|
private String powerStationOperator;
|
// 城市名称
|
@Excel(name = "城市名称", width = 20)
|
private String city;
|
// 充电场站
|
@Excel(name = "充电场站", width = 20)
|
private String chargingStation;
|
// 电站id
|
@Excel(name = "电站id", width = 20)
|
private Integer powerStationId;
|
// 终端编码
|
@Excel(name = "终端编码", width = 20)
|
private String terminalCode;
|
// 车牌号
|
@Excel(name = "车牌号码", width = 20)
|
private String plateNumber;
|
// 电站价电费金额
|
@Excel(name = "电站价电费金额", width = 20)
|
private BigDecimal electricityAmount;
|
// 电站价服务费金额
|
@Excel(name = "电站价服务费金额", width = 20)
|
private BigDecimal serviceAmount;
|
// 电站价总金额
|
@Excel(name = "电站价总金额", width = 20)
|
private BigDecimal totalAmount;
|
//获得积分
|
@Excel(name = "获得绿电分", width = 20)
|
private Integer point;
|
}
|