|
@@ -71,6 +71,34 @@ public class Users implements Serializable, Cloneable {
|
71
|
71
|
private LocalDateTime createDate;
|
72
|
72
|
|
73
|
73
|
|
|
74
|
+ @ApiModelProperty(name = "性别", notes = "1男2女9未知")
|
|
75
|
+ private Integer sex;
|
|
76
|
+
|
|
77
|
+ @ApiModelProperty(name = "民族", notes = "")
|
|
78
|
+ private String ethnic;
|
|
79
|
+
|
|
80
|
+ @ApiModelProperty(name = "血型", notes = "")
|
|
81
|
+ private String bloodType;
|
|
82
|
+
|
|
83
|
+ @ApiModelProperty(name = "身份证号", notes = "")
|
|
84
|
+ private String idNo;
|
|
85
|
+
|
|
86
|
+ @ApiModelProperty(name = "文化程度", notes = "")
|
|
87
|
+ private String education;
|
|
88
|
+
|
|
89
|
+ @ApiModelProperty(name = "政治面貌", notes = "")
|
|
90
|
+ private String politicalStatus;
|
|
91
|
+
|
|
92
|
+ @ApiModelProperty(name = "工作岗位", notes = "")
|
|
93
|
+ private String position;
|
|
94
|
+
|
|
95
|
+ @ApiModelProperty(name = "编制", notes = "")
|
|
96
|
+ private String budgetedPosts;
|
|
97
|
+
|
|
98
|
+ @ApiModelProperty(name = "行政级别", notes = "")
|
|
99
|
+ private String politicalLevel;
|
|
100
|
+
|
|
101
|
+
|
74
|
102
|
@ApiModelProperty(name = "角色列表", notes = "")
|
75
|
103
|
@TableField(exist = false)
|
76
|
104
|
List<Roles> rolesList;
|