package com.doumee.dao.business.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
public class YwCustomerRechargeRecordVO {
|
|
private Integer id;
|
|
@ExcelColumn(name = "客户名称", index = 1, width = 20)
|
private String customerName;
|
|
@ExcelColumn(name = "业务类型", index = 2, width = 10)
|
private String typeText;
|
|
private Integer type;
|
|
@ExcelColumn(name = "设备信息", index = 3, width = 30)
|
private String deviceInfo;
|
|
@ExcelColumn(name = "充值金额(元)", index = 4, width = 12)
|
private BigDecimal money;
|
|
@ExcelColumn(name = "充值前余额", index = 5, width = 12)
|
private BigDecimal banlance;
|
|
@ExcelColumn(name = "充值后余额", index = 6, width = 12)
|
private BigDecimal balanceAfter;
|
|
@ExcelColumn(name = "状态", index = 7, width = 10)
|
private String statusText;
|
|
private Integer status;
|
|
@ExcelColumn(name = "任务ID", index = 8, width = 24)
|
private String oprId;
|
|
@ExcelColumn(name = "备注", index = 9, width = 20)
|
private String remark;
|
|
@ExcelColumn(name = "状态说明", index = 10, width = 20)
|
private String statusInfo;
|
|
@ExcelColumn(name = "提交时间", index = 11, width = 20)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createDate;
|
|
@ExcelColumn(name = "状态更新时间", index = 12, width = 20)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date statusTime;
|
|
private Integer customerId;
|
private Integer objId;
|
private String address;
|
private String name;
|
}
|