feige
2024-11-11 d2435c85115b12346a56fa9e9223902a085641bb
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.ruoyi.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
 
 
/**
 * @Version 1.0
 * @Author Jin_quan Ou
 * @Date 2023-03-09 10:20
 * 家庭资产记录对象 zf_property
 */
 
@Data
@ToString
public class ZfProperty implements Serializable
{
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /** 资产类型 */
    @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;
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    /**
     * 发生时间
     */
    @Excel(name = "时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
 
    private String url;
 
    /**
     * 家庭id
     */
    @Excel(name = "所属家庭编号(导入数据时请删除此栏)")
    private Long familyId;
 
    /**
     * 是否是本家庭的数据(0:不是,1:是)
     */
    @TableField(exist = false)
    private Integer ownData = 0;
 
    /**
     * 数据状态
     */
    @Excel(name = "是否注销",readConverterExp = "0=正常,1=已注销")
    private Integer status;
 
    /**
     * 开始时间
     */
    @TableField(exist = false)
    private Date happenStartTime;
 
    /**
     * 结束时间
     */
    @TableField(exist = false)
    private Date happenEndTime;
 
    private Integer shareId;
 
}