feat: 参加工作时间

This commit is contained in:
李京通 2025-06-06 17:24:32 +08:00
parent 6a6b4069d8
commit 33f7454c1f
1 changed files with 11 additions and 0 deletions

View File

@ -41,6 +41,9 @@ public class SysUser extends BaseEntity
@Excel(name = "用户名称")
private String nickName;
@Excel(name = "入职时间")
private String workTime;
/** 用户邮箱 */
@Excel(name = "用户邮箱")
private String email;
@ -135,6 +138,14 @@ public class SysUser extends BaseEntity
this.areaAuthCode = areaAuthCode;
}
public String getWorkTime() {
return workTime;
}
public void setWorkTime(String workTime) {
this.workTime = workTime;
}
public SysUser(Long userId)
{
this.userId = userId;