feige
2024-11-20 b10f260189e5db5b89d9a85ce4fb08984d2aae2a
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
package com.ruoyi.domain.excel;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-05-13 21:29
 * @Version 1.0.0
 **/
@Data
public class ZfPropertyExcelBean implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 资产类型 */
    @Excel(name = "资产类型")
    private String type;
 
    /** 标题(账号、卡号) */
    @Excel(name = "标题(账号、卡号)")
    private String title;
 
    /** 开户行(资产地址) */
    @Excel(name = "开户行(资产地址)")
    private String location;
 
    /** 持有人名字 */
    @Excel(name = "持有人名字")
    private String holder;
 
    /** 存放地址 */
    @Excel(name = "存放地址")
    private String address;
 
    @Excel(name="备注")
    private String remark;
 
    /**
     * 数据状态
     */
    @Excel(name = "是否注销",readConverterExp = "0=正常,1=已注销")
    private Integer status;
 
    /**
     * 发生时间
     */
    @Excel(name = "时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
}