|
@@ -30,11 +30,11 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 性别
|
|
|
@TableField("sex")
|
|
|
- private Short sex;
|
|
|
+ private String sex;
|
|
|
|
|
|
// 民族
|
|
|
@TableField("nation")
|
|
|
- private Short nation;
|
|
|
+ private String nation;
|
|
|
|
|
|
// 身份证号码
|
|
|
@TableField("id_card")
|
|
@@ -46,7 +46,7 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 出生日期
|
|
|
@TableField("birthday")
|
|
|
- private Date birthday;
|
|
|
+ private String birthday;
|
|
|
|
|
|
// 电子邮箱
|
|
|
@TableField("e_mail")
|
|
@@ -63,7 +63,7 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 员工状态
|
|
|
@TableField("user_type")
|
|
|
- private Short userType;
|
|
|
+ private String userType;
|
|
|
|
|
|
// 银行卡号
|
|
|
@TableField("bank_number")
|
|
@@ -71,15 +71,15 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 婚姻状态
|
|
|
@TableField("marital_status")
|
|
|
- private Short maritalStatus;
|
|
|
+ private String maritalStatus;
|
|
|
|
|
|
// 政治面貌
|
|
|
@TableField("political_outlook")
|
|
|
- private Short politicalOutlook;
|
|
|
+ private String politicalOutlook;
|
|
|
|
|
|
// 籍贯
|
|
|
@TableField("native_place")
|
|
|
- private Byte nativePlace;
|
|
|
+ private String nativePlace;
|
|
|
|
|
|
// 户口所在地
|
|
|
@TableField("registered_residence")
|
|
@@ -111,7 +111,7 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 入职时间
|
|
|
@TableField("entry_date")
|
|
|
- private Date entryDate;
|
|
|
+ private String entryDate;
|
|
|
|
|
|
// 试用岗位
|
|
|
@TableField("probation_position")
|
|
@@ -123,7 +123,7 @@ public class SysUserInfo extends BaseEntity {
|
|
|
|
|
|
// 试用期结束日期
|
|
|
@TableField("probation_end_date")
|
|
|
- private Date probationEndDate;
|
|
|
+ private String probationEndDate;
|
|
|
|
|
|
// 所属部门
|
|
|
@TableField("department")
|