From c50e176c4a6b9331d2d1c0520bafb18f54f0dee6 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 08 三月 2024 17:35:10 +0800 Subject: [PATCH] 部门增加管理员 --- src/main/java/com/mindskip/xzs/domain/User.java | 158 ++-------------------------------------------------- 1 files changed, 7 insertions(+), 151 deletions(-) diff --git a/src/main/java/com/mindskip/xzs/domain/User.java b/src/main/java/com/mindskip/xzs/domain/User.java index cce1041..6f1628a 100644 --- a/src/main/java/com/mindskip/xzs/domain/User.java +++ b/src/main/java/com/mindskip/xzs/domain/User.java @@ -1,8 +1,11 @@ package com.mindskip.xzs.domain; +import lombok.Data; + import java.io.Serializable; import java.util.Date; +@Data public class User implements Serializable { private static final long serialVersionUID = -7797183521247423117L; @@ -71,155 +74,8 @@ private String wxOpenId; private String deptIds; - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getUserUuid() { - return userUuid; - } - - public void setUserUuid(String userUuid) { - this.userUuid = userUuid == null ? null : userUuid.trim(); - } - - public String getUserName() { - return userName; - } - - public void setUserName(String userName) { - this.userName = userName == null ? null : userName.trim(); - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password == null ? null : password.trim(); - } - - public String getRealName() { - return realName; - } - - public void setRealName(String realName) { - this.realName = realName == null ? null : realName.trim(); - } - - public Integer getAge() { - return age; - } - - public void setAge(Integer age) { - this.age = age; - } - - public Integer getSex() { - return sex; - } - - public void setSex(Integer sex) { - this.sex = sex; - } - - public Date getBirthDay() { - return birthDay; - } - - public void setBirthDay(Date birthDay) { - this.birthDay = birthDay; - } - - public Integer getUserLevel() { - return userLevel; - } - - public void setUserLevel(Integer userLevel) { - this.userLevel = userLevel; - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone == null ? null : phone.trim(); - } - - public Integer getRole() { - return role; - } - - public void setRole(Integer role) { - this.role = role; - } - - public Integer getStatus() { - return status; - } - - public void setStatus(Integer status) { - this.status = status; - } - - public String getImagePath() { - return imagePath; - } - - public void setImagePath(String imagePath) { - this.imagePath = imagePath == null ? null : imagePath.trim(); - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public Date getModifyTime() { - return modifyTime; - } - - public void setModifyTime(Date modifyTime) { - this.modifyTime = modifyTime; - } - - public Date getLastActiveTime() { - return lastActiveTime; - } - - public void setLastActiveTime(Date lastActiveTime) { - this.lastActiveTime = lastActiveTime; - } - - public Boolean getDeleted() { - return deleted; - } - - public void setDeleted(Boolean deleted) { - this.deleted = deleted; - } - - public String getWxOpenId() { - return wxOpenId; - } - - public void setWxOpenId(String wxOpenId) { - this.wxOpenId = wxOpenId == null ? null : wxOpenId.trim(); - } - - public String getDeptIds() { - return deptIds; - } - - public void setDeptIds(String deptIds) { - this.deptIds = deptIds; - } + /** + * 鏄惁閮ㄩ棬绠$悊鍛� + */ + private String deptAdmin; } -- Gitblit v1.8.0