新增品

This commit is contained in:
2025-06-17 17:20:57 +08:00
parent bde2a4efa5
commit d188743f49
8 changed files with 1132 additions and 387 deletions
+137 -138
View File
@@ -6,203 +6,202 @@ import lombok.Data;
/**
* 用户
*
* @author Administrator
*
* @author Administrator
*/
@Data
public class SysUser {
private Integer userId;
private Integer userId;
public Integer getUserId() {
return userId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getRealname() {
return realname;
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
public String getUsername() {
return username;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUserStatus() {
return userStatus;
}
public String getUserStatus() {
return userStatus;
}
public void setUserStatus(String userStatus) {
this.userStatus = userStatus;
}
public void setUserStatus(String userStatus) {
this.userStatus = userStatus;
}
public String getRole() {
return role;
}
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role;
}
public void setRole(String role) {
this.role = role;
}
public String getSysStatus() {
return sysStatus;
}
public String getSysStatus() {
return sysStatus;
}
public void setSysStatus(String sysStatus) {
this.sysStatus = sysStatus;
}
public void setSysStatus(String sysStatus) {
this.sysStatus = sysStatus;
}
public String getReadLogStatus() {
return readLogStatus;
}
public String getReadLogStatus() {
return readLogStatus;
}
public void setReadLogStatus(String readLogStatus) {
this.readLogStatus = readLogStatus;
}
public void setReadLogStatus(String readLogStatus) {
this.readLogStatus = readLogStatus;
}
public String getCreateBy() {
return createBy;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
public Date getCreateDate() {
return createDate;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getUpdateBy() {
return updateBy;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public Date getUpdateDate() {
return updateDate;
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
public String getBirthDay() {
return birthDay;
}
public String getBirthDay() {
return birthDay;
}
public void setBirthDay(String birthDay) {
this.birthDay = birthDay;
}
public void setBirthDay(String birthDay) {
this.birthDay = birthDay;
}
public String getBirthType() {
return birthType;
}
public String getBirthType() {
return birthType;
}
public void setBirthType(String birthType) {
this.birthType = birthType;
}
public void setBirthType(String birthType) {
this.birthType = birthType;
}
public Integer getIsBirthDay() {
return isBirthDay;
}
public Integer getIsBirthDay() {
return isBirthDay;
}
public void setIsBirthDay(Integer isBirthDay) {
this.isBirthDay = isBirthDay;
}
public void setIsBirthDay(Integer isBirthDay) {
this.isBirthDay = isBirthDay;
}
public String getEntryDate() {
return entryDate;
}
public String getEntryDate() {
return entryDate;
}
public void setEntryDate(String entryDate) {
this.entryDate = entryDate;
}
public void setEntryDate(String entryDate) {
this.entryDate = entryDate;
}
public String getNeedIp() {
return needIp;
}
public String getNeedIp() {
return needIp;
}
public void setNeedIp(String needIp) {
this.needIp = needIp;
}
public void setNeedIp(String needIp) {
this.needIp = needIp;
}
public String getRoleSearch() {
return roleSearch;
}
public String getRoleSearch() {
return roleSearch;
}
public void setRoleSearch(String roleSearch) {
this.roleSearch = roleSearch;
}
public void setRoleSearch(String roleSearch) {
this.roleSearch = roleSearch;
}
public String[] getRoleArr() {
return roleArr;
}
public String[] getRoleArr() {
return roleArr;
}
public void setRoleArr(String[] roleArr) {
this.roleArr = roleArr;
}
public void setRoleArr(String[] roleArr) {
this.roleArr = roleArr;
}
private String realname;
private String realname;
private String username;
private String username;
private String password;
private String password;
private String userStatus;
private String userStatus;
private String role;
private String role;
private String sysStatus;
private String sysStatus;
private String readLogStatus;
private String readLogStatus;
private String createBy;
private String createBy;
private Date createDate;
private Date createDate;
private String updateBy;
private String updateBy;
private Date updateDate;
private Date updateDate;
private String birthDay;
private String birthDay;
private String birthType;
private String birthType;
private Integer isBirthDay;
private Integer isBirthDay;
private String entryDate;
private String entryDate;
// 是否需要判断IP 0:否 1:是
private String needIp;
// 是否需要判断IP 0:否 1:是
private String needIp;
// 根据角色查找用户
private String roleSearch;
// 根据角色查找用户
private String roleSearch;
// 用户所拥有角色数组
private String[] roleArr;
// 用户所拥有角色数组
private String[] roleArr;
}