feat: 参加工作时间
This commit is contained in:
parent
6a6b4069d8
commit
33f7454c1f
|
@ -41,6 +41,9 @@ public class SysUser extends BaseEntity
|
||||||
@Excel(name = "用户名称")
|
@Excel(name = "用户名称")
|
||||||
private String nickName;
|
private String nickName;
|
||||||
|
|
||||||
|
@Excel(name = "入职时间")
|
||||||
|
private String workTime;
|
||||||
|
|
||||||
/** 用户邮箱 */
|
/** 用户邮箱 */
|
||||||
@Excel(name = "用户邮箱")
|
@Excel(name = "用户邮箱")
|
||||||
private String email;
|
private String email;
|
||||||
|
@ -135,6 +138,14 @@ public class SysUser extends BaseEntity
|
||||||
this.areaAuthCode = areaAuthCode;
|
this.areaAuthCode = areaAuthCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getWorkTime() {
|
||||||
|
return workTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkTime(String workTime) {
|
||||||
|
this.workTime = workTime;
|
||||||
|
}
|
||||||
|
|
||||||
public SysUser(Long userId)
|
public SysUser(Long userId)
|
||||||
{
|
{
|
||||||
this.userId = userId;
|
this.userId = userId;
|
||||||
|
|
Loading…
Reference in New Issue