package com.ruoyi.order.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel(value = "充电算帐单列表-导出")
|
public class TChargingBillExport implements Serializable {
|
|
@Excel(name = "账单编号",width = 30)
|
private String code;
|
@Excel(name = "账单类型",width = 30)
|
private String billType;
|
@Excel(name = "账单分类",width = 30,replace = {"全站账单_1","各个站点账单_2"})
|
private String type;
|
@Excel(name = "账单周期",width = 30 )
|
private String billWeek;
|
@Excel(name = "站点名称",width = 30)
|
private String siteName;
|
@Excel(name = "总金额",width = 30)
|
private BigDecimal paymentAmount;
|
@Excel(name = "总电费",width = 30)
|
private BigDecimal electrovalence;
|
@Excel(name = "总服务费",width = 30)
|
private BigDecimal serviceCharge;
|
@Excel(name = "总电量",width = 30)
|
private BigDecimal chargingCapacity;
|
@Excel(name = "充电时长",width = 30)
|
private String chargingTime;
|
@Excel(name = "充电订单数量",width = 30)
|
private Integer orderCount;
|
@Excel(name = "账单生成日期",width = 30)
|
private String billTime;
|
}
|