Jinquan_Ou
2023-03-16 6c746ec2d71de4f14af773c867c71fe55b32f49f
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.ToString;
 
import java.io.Serializable;
import java.time.LocalDate;
 
/**
 * @Version 1.0
 * @Author Jin_quan Ou
 * @Date 2023-03-12 17:09
 */
@TableName("z_info_user")
@Data
@ToString
public class ZInfoUser implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "user_id", type = IdType.AUTO)
    private Integer userId;
 
    /**
     * 姓名
     */
    private String nickName;
 
    /**
     * 曾用名
     */
    private String oldName;
 
    /**
     * 性别
     */
    private Integer sex;
 
    /**
     * 国籍
     */
    private String nationality;
 
    /**
     * 民族
     */
    private String nation;
 
    /**
     * 婚姻状况--0:未婚,1:已婚,2:离婚
     */
    private Integer maritalStatus;
 
    /**
     * 政治面貌
     */
    private String politicalOutlook;
 
    /**
     * 电话号码
     */
    private String phoneNumber;
 
    /**
     * 身份证号
     */
    private String idNum;
 
    /**
     * 户籍地址
     */
    private String locationAddress;
 
    /**
     * 常住地址
     */
    private String alwaysAddress;
 
    /**
     * 户籍地公安机关
     */
    private String locationPolice;
 
    /**
     * 常住地公安机关
     */
    private String alwaysPolice;
 
    /**
     * 所在单位/学校
     */
    private String unit;
 
    /**
     * 职务/身份
     */
    private String position;
 
    /**
     * 图片地址
     */
    private String img;
 
    /**
     * 父亲的id
     */
    private Integer fatherId;
 
    /**
     * 母亲的id
     */
    private Integer momId;
 
    /**
     * 出生年月日
     */
    private LocalDate birth;
 
    /**
     * 个人背景图片、视频
     */
    private String url;
 
}