doum
7 天以前 5f9bf98779e2c3e69324d75849efdda00868da4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
}