532 lines
10 KiB
Plaintext
532 lines
10 KiB
Plaintext
package com.bonus.sys.beans;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import org.apache.ibatis.type.Alias;
|
|
import lombok.Data;
|
|
|
|
@Alias("UserBean")
|
|
public class UserBean implements java.io.Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Integer id;
|
|
|
|
private String name;
|
|
|
|
private Integer orgId;
|
|
|
|
private Integer orgParentId;
|
|
|
|
private String orgName;
|
|
|
|
private Integer postId;
|
|
|
|
private SysDataDictBean type;
|
|
|
|
private Integer internalEmp;
|
|
|
|
private String loginName; //当作身份证号
|
|
|
|
private String picUrl;
|
|
|
|
private String skin;
|
|
|
|
private String salt;
|
|
|
|
private String passwd;
|
|
|
|
private String sex;
|
|
|
|
private String mail;
|
|
|
|
private String postName;
|
|
|
|
private String qq;
|
|
|
|
private String telphone;
|
|
|
|
private Date createTime;
|
|
|
|
private String createDate;
|
|
|
|
private Date updateTime;
|
|
|
|
private String isActive;
|
|
|
|
private String projectId;
|
|
|
|
private String projectName;
|
|
|
|
private String officeAddress; //办公地点
|
|
|
|
private String postDuty;
|
|
|
|
private String jobNumber;//工号
|
|
|
|
private String identityState;//平台前后端人员的标志
|
|
|
|
private SysDataDictBean accountType;
|
|
|
|
private SysDataDictBean team;
|
|
|
|
private String yzm;
|
|
|
|
private NewRoleBean role;
|
|
|
|
private OrgBean org;
|
|
|
|
private PostBean post;
|
|
|
|
private String newRoleId;
|
|
|
|
private Integer delFlag;
|
|
|
|
private Integer brother;
|
|
|
|
private NewRoleBean[] roleArr;
|
|
|
|
private List<NewRoleBean> roles;
|
|
|
|
private String totalName; //相关专业下的具体名称
|
|
private String city; //地市
|
|
|
|
private String ifPermiss;
|
|
private String profess;
|
|
private String idCard;
|
|
private String greenScore; //绿色通道成绩
|
|
|
|
|
|
public String getCity() {
|
|
return city;
|
|
}
|
|
|
|
public void setCity(String city) {
|
|
this.city = city;
|
|
}
|
|
|
|
public String getGreenScore() {
|
|
return greenScore;
|
|
}
|
|
|
|
public void setGreenScore(String greenScore) {
|
|
this.greenScore = greenScore;
|
|
}
|
|
|
|
public String getTotalName() {
|
|
return totalName;
|
|
}
|
|
|
|
public void setTotalName(String totalName) {
|
|
this.totalName = totalName;
|
|
}
|
|
|
|
public String getIfPermiss() {
|
|
return ifPermiss;
|
|
}
|
|
|
|
public void setIfPermiss(String ifPermiss) {
|
|
this.ifPermiss = ifPermiss;
|
|
}
|
|
|
|
public String getProfess() {
|
|
return profess;
|
|
}
|
|
|
|
public void setProfess(String profess) {
|
|
this.profess = profess;
|
|
}
|
|
|
|
public String getIdCard() {
|
|
return idCard;
|
|
}
|
|
|
|
public void setIdCard(String idCard) {
|
|
this.idCard = idCard;
|
|
}
|
|
|
|
private String opt;
|
|
|
|
public String getOpt() {
|
|
return opt;
|
|
}
|
|
|
|
public void setOpt(String opt) {
|
|
this.opt = opt;
|
|
}
|
|
|
|
public NewRoleBean[] getRoleArr() {
|
|
return roleArr;
|
|
}
|
|
|
|
public void setRoleArr(NewRoleBean[] roleArr) {
|
|
this.roleArr = roleArr;
|
|
}
|
|
|
|
public String getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(String createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public OrgBean getOrg() {
|
|
return org;
|
|
}
|
|
|
|
public void setOrg(OrgBean org) {
|
|
this.org = org;
|
|
}
|
|
|
|
public PostBean getPost() {
|
|
return post;
|
|
}
|
|
|
|
public void setPost(PostBean post) {
|
|
this.post = post;
|
|
}
|
|
|
|
public List<NewRoleBean> getRoles() {
|
|
return roles;
|
|
}
|
|
|
|
public void setRoles(List<NewRoleBean> roles) {
|
|
this.roles = roles;
|
|
}
|
|
|
|
|
|
public Integer getDelFlag() {
|
|
return delFlag;
|
|
}
|
|
|
|
public Integer getBrother() {
|
|
return brother;
|
|
}
|
|
|
|
public void setBrother(Integer brother) {
|
|
this.brother = brother;
|
|
}
|
|
|
|
public void setDelFlag(Integer delFlag) {
|
|
this.delFlag = delFlag;
|
|
}
|
|
|
|
public NewRoleBean getRole() {
|
|
return role;
|
|
}
|
|
|
|
public String getNewRoleId() {
|
|
return newRoleId;
|
|
}
|
|
|
|
public void setNewRoleId(String newRoleId) {
|
|
this.newRoleId = newRoleId;
|
|
}
|
|
|
|
public void setRole(NewRoleBean role) {
|
|
this.role = role;
|
|
}
|
|
|
|
public UserBean(Integer id) {
|
|
super();
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getOrgParentId() {
|
|
return orgParentId;
|
|
}
|
|
|
|
public void setOrgParentId(Integer orgParentId) {
|
|
this.orgParentId = orgParentId;
|
|
}
|
|
|
|
public UserBean() {
|
|
super();
|
|
}
|
|
|
|
public String getYzm() {
|
|
return yzm;
|
|
}
|
|
|
|
public Integer getInternalEmp() {
|
|
return internalEmp;
|
|
}
|
|
|
|
public void setInternalEmp(Integer internalEmp) {
|
|
this.internalEmp = internalEmp;
|
|
}
|
|
|
|
public void setYzm(String yzm) {
|
|
this.yzm = yzm;
|
|
}
|
|
|
|
//下面是查询使用
|
|
private String keyWord;
|
|
|
|
public SysDataDictBean getTeam() {
|
|
return team;
|
|
}
|
|
|
|
public void setTeam(SysDataDictBean team) {
|
|
this.team = team;
|
|
}
|
|
|
|
public String getIdentityState() {
|
|
return identityState;
|
|
}
|
|
|
|
public void setIdentityState(String identityState) {
|
|
this.identityState = identityState;
|
|
}
|
|
|
|
|
|
public SysDataDictBean getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(SysDataDictBean type) {
|
|
this.type = type;
|
|
}
|
|
|
|
private int roleId;
|
|
|
|
private String cId;
|
|
|
|
public SysDataDictBean getAccountType() {
|
|
return accountType;
|
|
}
|
|
|
|
public void setAccountType(SysDataDictBean accountType) {
|
|
this.accountType = accountType;
|
|
}
|
|
|
|
public int getRoleId() {
|
|
return roleId;
|
|
}
|
|
|
|
public void setRoleId(int roleId) {
|
|
this.roleId = roleId;
|
|
}
|
|
|
|
|
|
public String getJobNumber() {
|
|
return jobNumber;
|
|
}
|
|
|
|
public void setJobNumber(String jobNumber) {
|
|
this.jobNumber = jobNumber;
|
|
}
|
|
|
|
public String getOrgName() {
|
|
return orgName;
|
|
}
|
|
|
|
public String getProjectId() {
|
|
return projectId;
|
|
}
|
|
|
|
public void setProjectId(String projectId) {
|
|
this.projectId = projectId;
|
|
}
|
|
|
|
public String getProjectName() {
|
|
return projectName;
|
|
}
|
|
|
|
public void setProjectName(String projectName) {
|
|
this.projectName = projectName;
|
|
}
|
|
|
|
public void setOrgName(String orgName) {
|
|
this.orgName = orgName;
|
|
}
|
|
|
|
public String getKeyWord() {
|
|
return keyWord;
|
|
}
|
|
|
|
public void setKeyWord(String keyWord) {
|
|
this.keyWord = keyWord;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name == null ? null : name.trim();
|
|
}
|
|
|
|
public Integer getOrgId() {
|
|
return orgId;
|
|
}
|
|
|
|
public void setOrgId(Integer orgId) {
|
|
this.orgId = orgId;
|
|
}
|
|
|
|
public Integer getPostId() {
|
|
return postId;
|
|
}
|
|
|
|
public void setPostId(Integer postId) {
|
|
this.postId = postId;
|
|
}
|
|
|
|
public String getLoginName() {
|
|
return loginName;
|
|
}
|
|
|
|
public void setLoginName(String loginName) {
|
|
this.loginName = loginName == null ? null : loginName.trim();
|
|
}
|
|
|
|
public String getPicUrl() {
|
|
return picUrl;
|
|
}
|
|
|
|
public void setPicUrl(String picUrl) {
|
|
this.picUrl = picUrl == null ? null : picUrl.trim();
|
|
}
|
|
|
|
public String getSkin() {
|
|
return skin;
|
|
}
|
|
|
|
public void setSkin(String skin) {
|
|
this.skin = skin == null ? null : skin.trim();
|
|
}
|
|
|
|
public String getSalt() {
|
|
return salt;
|
|
}
|
|
|
|
public void setSalt(String salt) {
|
|
this.salt = salt == null ? null : salt.trim();
|
|
}
|
|
|
|
public String getPasswd() {
|
|
return passwd;
|
|
}
|
|
|
|
public void setPasswd(String passwd) {
|
|
this.passwd = passwd == null ? null : passwd.trim();
|
|
}
|
|
|
|
public String getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(String sex) {
|
|
this.sex = sex == null ? null : sex.trim();
|
|
}
|
|
|
|
public String getMail() {
|
|
return mail;
|
|
}
|
|
|
|
public void setMail(String mail) {
|
|
this.mail = mail == null ? null : mail.trim();
|
|
}
|
|
|
|
public String getQq() {
|
|
return qq;
|
|
}
|
|
|
|
public void setQq(String qq) {
|
|
this.qq = qq == null ? null : qq.trim();
|
|
}
|
|
|
|
public String getTelphone() {
|
|
return telphone;
|
|
}
|
|
|
|
public void setTelphone(String telphone) {
|
|
this.telphone = telphone == null ? null : telphone.trim();
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public Date getUpdateTime() {
|
|
return updateTime;
|
|
}
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
this.updateTime = updateTime;
|
|
}
|
|
|
|
public String getIsActive() {
|
|
return isActive;
|
|
}
|
|
|
|
public void setIsActive(String isActive) {
|
|
this.isActive = isActive == null ? null : isActive.trim();
|
|
}
|
|
|
|
public String getPostName() {
|
|
return postName;
|
|
}
|
|
|
|
public void setPostName(String postName) {
|
|
this.postName = postName;
|
|
}
|
|
|
|
public String getOfficeAddress() {
|
|
return officeAddress;
|
|
}
|
|
|
|
public void setOfficeAddress(String officeAddress) {
|
|
this.officeAddress = officeAddress;
|
|
}
|
|
|
|
public String getPostDuty() {
|
|
return postDuty;
|
|
}
|
|
|
|
public void setPostDuty(String postDuty) {
|
|
this.postDuty = postDuty;
|
|
}
|
|
|
|
public String getcId() {
|
|
return cId;
|
|
}
|
|
|
|
public void setcId(String cId) {
|
|
this.cId = cId;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UserBean [id=" + id + ", name=" + name + ", orgId=" + orgId + ", orgParentId=" + orgParentId
|
|
+ ", orgName=" + orgName + ", postId=" + postId + ", type=" + type + ", internalEmp=" + internalEmp
|
|
+ ", loginName=" + loginName + ", picUrl=" + picUrl + ", skin=" + skin + ", salt=" + salt + ", passwd="
|
|
+ passwd + ", sex=" + sex + ", mail=" + mail + ", postName=" + postName + ", qq=" + qq + ", telphone="
|
|
+ telphone + ", createTime=" + createTime + ", createDate=" + createDate + ", updateTime=" + updateTime
|
|
+ ", isActive=" + isActive + ", projectId=" + projectId + ", projectName=" + projectName
|
|
+ ", officeAddress=" + officeAddress + ", postDuty=" + postDuty + ", jobNumber=" + jobNumber
|
|
+ ", identityState=" + identityState + ", accountType=" + accountType + ", team=" + team + ", yzm="
|
|
+ yzm + ", role=" + role + ", org=" + org + ", post=" + post + ", newRoleId=" + newRoleId + ", delFlag="
|
|
+ delFlag + ", brother=" + brother + ", roleArr=" + Arrays.toString(roleArr) + ", roles=" + roles
|
|
+ ", totalName=" + totalName + ", ifPermiss=" + ifPermiss + ", profess=" + profess + ", idCard="
|
|
+ idCard + ", greenScore=" + greenScore + ", opt=" + opt + ", keyWord=" + keyWord + ", roleId=" + roleId
|
|
+ ", cId=" + cId + "]";
|
|
}
|
|
|
|
}
|