zqy
2024-08-27 b1e37badce27751f7751bc27d69b1a6f6f64ae56
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
104
105
106
107
108
109
110
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 个人财产表
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@TableName("z_property")
@Data
public class ZProperty implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 本人id
     */
    private Long userId;
 
 
    @Excel(name = "日期",dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenTime;
 
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    /**
     * 财产类别
     */
    @Excel(name = "财产类别")
    private String type;
 
    /**
     * 收支名称
     */
    @Excel(name = "收支名称")
    private String incomeName;
 
    /**
     * 金额
     */
    @Excel(name = "金额")
    private String price;
 
    /**
     * 期限
     */
    @Excel(name = "期限")
    private String timeLimit;
 
    /**
     * 变更或注销
     */
    @Excel(name = "变更或注销或购买")
    private String isChange;
 
    /**
     * 产权
     */
    @Excel(name = "产权")
    private String propertyRight;
 
    /**
     * 存放位置
     */
    @Excel(name = "存放位置")
    private String location;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
    private String url;
 
    @Excel(name = "是否注销(填是或否)",readConverterExp = "0=否,1=是")
    private Integer status;
 
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenStartTime;
 
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenEndTime;
 
    /**
     * 分享人
     */
    private Integer shareId;
}