2
0

fix: 添加出生日期字段

This commit is contained in:
caiyuchao
2025-02-19 16:31:58 +08:00
parent 1749442161
commit 7c048fe254
8 changed files with 37 additions and 3 deletions

View File

@@ -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();
}
}