This commit is contained in:
sxu 2025-05-09 09:26:55 +08:00
parent 94b74fb40f
commit 3a3737a4cc
1 changed files with 4 additions and 3 deletions

View File

@ -94,7 +94,7 @@ public class SysUser extends BaseEntity {
/** 生日 */ /** 生日 */
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthday; private String birthday;
/** /**
* 密码 * 密码
@ -282,11 +282,12 @@ public class SysUser extends BaseEntity {
this.photoUrl = photoUrl; this.photoUrl = photoUrl;
} }
public Date getBirthday() {
public String getBirthday() {
return birthday; return birthday;
} }
public void setBirthday(Date birthday) { public void setBirthday(String birthday) {
this.birthday = birthday; this.birthday = birthday;
} }