whywhyo
2023-07-25 1e0fe96e56d9d6fa6153d4c7e512e129d922ca61
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
62
63
64
65
66
package com.ruoyi.domain.excel;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-05-13 20:40
 * @Version 1.0.0
 **/
public class ZfEconomyExcelBean implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 0:基金、1:台账
     */
    @Excel(name = "收支类型",readConverterExp = "0=基金,1=台账")
    private Integer type;
    /**
     * 发生时间
     */
    @Excel(name = "发生时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
    /**
     * 收入/支出
     */
    @Excel(name = "收入/支出")
    private String price;
 
    /**
     * 用途
     */
    @Excel(name = "用途")
    private String useFor;
 
    /**
     * 使用人
     */
    @Excel(name = "使用人")
    private String usePeople;
 
    /**
     * 0:现金,1:自动划扣
     */
    @Excel(name = "现金/自动划扣",readConverterExp = "0=现金,1=自动划扣")
    private Integer kind;
 
    /**
     * 余额
     */
    @Excel(name = "余额")
    private String balance;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
 
}