package com.ruoyi.order.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "导出充电算帐单支付-导出")
|
public class ChargingBillPayExport implements Serializable {
|
@Excel(name = "序号",width = 30)
|
private String id;
|
@Excel(name = "支付平台",width = 30)
|
private String platform;
|
@Excel(name = "支付方式名称",width = 30)
|
private String platformPay;
|
@Excel(name = "支付平台流水号",width = 30)
|
private String rechargeSerialNumber;
|
@Excel(name = "平台订单号",width = 30)
|
private String code;
|
@Excel(name = "支付时间",width = 30)
|
private String payTime;
|
@Excel(name = "支付金额",width = 30)
|
private String paymentAmount;
|
@Excel(name = "合计",width = 30)
|
private String total;
|
}
|