package com.ruoyi.order.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel(value = "导出充电算帐单-导出")
|
public class ChargingBillExport implements Serializable {
|
|
@Excel(name = "账单编号",width = 30)
|
private String code;
|
@Excel(name = "账户类型",width = 30)
|
private String accountType;
|
@Excel(name = "账单分类",width = 30,replace = {"全站账单_1","各个站点账单_2"})
|
private String type;
|
|
@Excel(name = "账单周期",width = 30 )
|
private String billWeek;
|
@Excel(name = "账单生成日期",width = 30)
|
private String billTime;
|
|
@Excel(name = "站点名称",width = 30)
|
private String siteName;
|
@Excel(name = "支付金额",width = 30)
|
private BigDecimal paymentAmount;
|
@Excel(name = "退款金额",width = 30)
|
private BigDecimal refundAmount;
|
@Excel(name = "入账金额",width = 30)
|
private BigDecimal income;
|
|
|
|
|
|
}
|