fix: 添加出生日期字段
This commit is contained in:
@@ -36,6 +36,10 @@ public class UUser extends BaseEntity
|
||||
@Excel(name = "登录名称")
|
||||
private String userName;
|
||||
|
||||
/** 出生日期 */
|
||||
@Excel(name = "出生日期")
|
||||
private Date birthDate;
|
||||
|
||||
/** 用户昵称 */
|
||||
@Excel(name = "用户名称")
|
||||
private String nickName;
|
||||
@@ -332,6 +336,14 @@ public class UUser extends BaseEntity
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public Date getBirthDate() {
|
||||
return birthDate;
|
||||
}
|
||||
|
||||
public void setBirthDate(Date birthDate) {
|
||||
this.birthDate = birthDate;
|
||||
}
|
||||
|
||||
public void setRoleId(Long roleId)
|
||||
{
|
||||
this.roleId = roleId;
|
||||
@@ -368,6 +380,7 @@ public class UUser extends BaseEntity
|
||||
.append("remark", getRemark())
|
||||
.append("dept", getDept())
|
||||
.append("kycStatus", getKycStatus())
|
||||
.append("birthDate", getBirthDate())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user