package com.zbooksoft.gdmis.data.vo;
|
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class UserInfo {
|
/**
|
* 主键ID
|
*/
|
private Long id;
|
|
/**
|
* 是否允许登录
|
*/
|
private Integer enableLogin;
|
|
/**
|
* 密码
|
*/
|
private String password;
|
|
/**
|
* 真实姓名
|
*/
|
private String userName;
|
/**
|
* 登录名
|
*/
|
private String loginName;
|
/**
|
* 性别
|
*/
|
private String sex;
|
/**
|
* 身份证
|
*/
|
private String idCard;
|
|
/**
|
* 所属省份
|
*/
|
private String province;
|
|
/**
|
* 所属城市
|
*/
|
private String city;
|
|
/**
|
* 单位
|
*/
|
private String dept;
|
|
/**
|
* 邮政编码
|
*/
|
private String postCode;
|
|
/**
|
* 单位地址
|
*/
|
private String deptAddress;
|
/**
|
* 手机号码
|
*/
|
private String mobile;
|
/**
|
* 电话号码
|
*/
|
private String telNumber;
|
|
/**
|
* 电子邮箱
|
*/
|
private String email;
|
|
/**
|
* QQ号
|
*/
|
private String qqNum;
|
/**
|
* 申请日期
|
*/
|
private String applyDate;
|
/**
|
* 项目类型
|
*/
|
private String projectType;
|
/**
|
* 资料范围
|
*/
|
private String materialScope;
|
/**
|
* 资料用途
|
*/
|
private String materialPurpose;
|
/**
|
* 职称
|
*/
|
private String job;
|
|
/**
|
* 项目名称
|
*/
|
private String projectName;
|
|
/**
|
* 单位性质
|
*/
|
private String deptNature;
|
/**
|
* 所属行业
|
*/
|
private String trade;
|
|
/**
|
* 涉密证书编号
|
*/
|
private String certificateNum;
|
|
/**
|
* 密级
|
*/
|
private String security;
|
|
/**
|
* 自助浏览
|
*/
|
private Integer selfBrowse;
|
|
/**
|
* 自助打印
|
*/
|
private Integer selfPrint;
|
/**
|
* 关联用户ID
|
*/
|
private Long userId;
|
|
/**
|
* 审批人
|
*/
|
private String approval;
|
/**
|
* 审批人ID
|
*/
|
private String approvalId;
|
/**
|
* 审批时间
|
*/
|
private Date approvalDate;
|
|
/**
|
* 密级代码
|
*/
|
private Integer securityCode;
|
/**
|
* 资料用途
|
*/
|
private String purpose;
|
private String projectTypes;
|
private String projectNames;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getEnableLogin() {
|
return enableLogin;
|
}
|
|
public void setEnableLogin(Integer enableLogin) {
|
this.enableLogin = enableLogin;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getLoginName() {
|
return loginName;
|
}
|
|
public void setLoginName(String loginName) {
|
this.loginName = loginName;
|
}
|
|
public String getSex() {
|
return sex;
|
}
|
|
public void setSex(String sex) {
|
this.sex = sex;
|
}
|
|
public String getIdCard() {
|
return idCard;
|
}
|
|
public void setIdCard(String idCard) {
|
this.idCard = idCard;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getDept() {
|
return dept;
|
}
|
|
public void setDept(String dept) {
|
this.dept = dept;
|
}
|
|
public String getPostCode() {
|
return postCode;
|
}
|
|
public void setPostCode(String postCode) {
|
this.postCode = postCode;
|
}
|
|
public String getDeptAddress() {
|
return deptAddress;
|
}
|
|
public void setDeptAddress(String deptAddress) {
|
this.deptAddress = deptAddress;
|
}
|
|
public String getMobile() {
|
return mobile;
|
}
|
|
public void setMobile(String mobile) {
|
this.mobile = mobile;
|
}
|
|
public String getTelNumber() {
|
return telNumber;
|
}
|
|
public void setTelNumber(String telNumber) {
|
this.telNumber = telNumber;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getQqNum() {
|
return qqNum;
|
}
|
|
public void setQqNum(String qqNum) {
|
this.qqNum = qqNum;
|
}
|
|
public String getApplyDate() {
|
return applyDate;
|
}
|
|
public void setApplyDate(String applyDate) {
|
this.applyDate = applyDate;
|
}
|
|
public String getProjectType() {
|
return projectType;
|
}
|
|
public void setProjectType(String projectType) {
|
this.projectType = projectType;
|
}
|
|
public String getMaterialScope() {
|
return materialScope;
|
}
|
|
public void setMaterialScope(String materialScope) {
|
this.materialScope = materialScope;
|
}
|
|
public String getMaterialPurpose() {
|
return materialPurpose;
|
}
|
|
public void setMaterialPurpose(String materialPurpose) {
|
this.materialPurpose = materialPurpose;
|
}
|
|
public String getJob() {
|
return job;
|
}
|
|
public void setJob(String job) {
|
this.job = job;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public String getDeptNature() {
|
return deptNature;
|
}
|
|
public void setDeptNature(String deptNature) {
|
this.deptNature = deptNature;
|
}
|
|
public String getTrade() {
|
return trade;
|
}
|
|
public void setTrade(String trade) {
|
this.trade = trade;
|
}
|
|
public String getCertificateNum() {
|
return certificateNum;
|
}
|
|
public void setCertificateNum(String certificateNum) {
|
this.certificateNum = certificateNum;
|
}
|
|
public String getSecurity() {
|
return security;
|
}
|
|
public void setSecurity(String security) {
|
this.security = security;
|
}
|
|
public Integer getSelfBrowse() {
|
return selfBrowse;
|
}
|
|
public void setSelfBrowse(Integer selfBrowse) {
|
this.selfBrowse = selfBrowse;
|
}
|
|
public Integer getSelfPrint() {
|
return selfPrint;
|
}
|
|
public void setSelfPrint(Integer selfPrint) {
|
this.selfPrint = selfPrint;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public String getApproval() {
|
return approval;
|
}
|
|
public void setApproval(String approval) {
|
this.approval = approval;
|
}
|
|
public String getApprovalId() {
|
return approvalId;
|
}
|
|
public void setApprovalId(String approvalId) {
|
this.approvalId = approvalId;
|
}
|
|
public Date getApprovalDate() {
|
return approvalDate;
|
}
|
|
public void setApprovalDate(Date approvalDate) {
|
this.approvalDate = approvalDate;
|
}
|
|
public Integer getSecurityCode() {
|
return securityCode;
|
}
|
|
public void setSecurityCode(Integer securityCode) {
|
this.securityCode = securityCode;
|
}
|
|
public String getPurpose() {
|
return purpose;
|
}
|
|
public void setPurpose(String purpose) {
|
this.purpose = purpose;
|
}
|
}
|