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 ChargingBillRefundExport 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 refundTime;
|
@Excel(name = "退款金额",width = 30)
|
private String refundMoney;
|
@Excel(name = "退款描述",width = 30)
|
private String refundRemark;
|
@Excel(name = "平台退款编号",width = 30)
|
private String refundCode;
|
@Excel(name = "支付平台退款流水号",width = 30)
|
private String refundSerialNumber;
|
@Excel(name = "合计",width = 30)
|
private String total;
|
}
|