mg
2022-10-12 09b28dc1ded086a78b5146e2e6f6cc2338b22e11
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.ycl.entity.caseHandler;
 
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 lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 当事人信息
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_party_info")
public class PartyInfo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 姓名
     */
    @TableField("name")
    private String name;
 
    /**
     * 手机号
     */
    @TableField("phone_code")
    private String phoneCode;
 
    /**
     * 证件类型
     */
    @TableField("certificate_type")
    private Integer certificateType;
 
    /**
     * 证件号
     */
    @TableField("certificate_code")
    private String certificateCode;
 
    /**
     * 文化程度
     */
    @TableField("education_degree")
    private Integer educationDegree;
 
    /**
     * 职业
     */
    @TableField("career")
    private String career;
 
    /**
     * 工作单位及职务
     */
    @TableField("work")
    private String work;
 
    /**
     * 民族
     */
    @TableField("nation")
    private Integer nation;
 
    /**
     * 籍贯
     */
    @TableField("native_place")
    private String nativePlace;
 
    /**
     * 现住地址
     */
    @TableField("live_address")
    private String liveAddress;
 
    /**
     * 户籍所在地
     */
    @TableField("register_address")
    private String registerAddress;
 
    /**
     * 创建人
     */
    @TableField("create_user")
    private Integer createUser;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
 
 
}