This commit is contained in:
parent
94b74fb40f
commit
3a3737a4cc
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue