package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@TableName("user")
|
public class UserInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 用户名:手机号 username
|
**/
|
private String username;
|
|
/**
|
* 密码 password
|
**/
|
private String password;
|
|
/**
|
* 真实姓名 password
|
**/
|
private String realname;
|
|
/**
|
* 身份证号 idcard
|
**/
|
private String idcard;
|
|
/**
|
* 邮箱 email
|
**/
|
private String email;
|
|
/**
|
* 单位 company
|
**/
|
private String company;
|
|
private Long companyid;
|
|
/**
|
* 部门 department
|
**/
|
private Long department;
|
/**
|
* 部门 department
|
**/
|
@TableField(exist = false)
|
private String departmentname;
|
|
/**
|
* 角色id roleid
|
**/
|
@TableField(exist = false)
|
private Long roleid;
|
|
/**
|
* 职务 job
|
**/
|
private String job;
|
|
/**
|
* 创建人 createdby
|
**/
|
private String createdby;
|
|
/**
|
* 创建时间 createddate
|
**/
|
private Date createddate;
|
|
/**
|
* 更新人 lastmodifiedby
|
**/
|
private String lastmodifiedby;
|
|
/**
|
* 更新时间 lastmodifieddate
|
**/
|
private Date lastmodifieddate;
|
|
/**
|
* 状态 1正常 0停用 status
|
**/
|
private Byte status;
|
|
/**
|
* 到期时间 expiredate
|
**/
|
private Date expiredate;
|
|
/**
|
* 是否删除 1删除 0未删 isdel
|
**/
|
private Byte isdel;
|
|
/**
|
* # 1超级管理员,2监管用户,3企业用户,4专家用户
|
**/
|
private Integer type;
|
|
/**
|
* 是否单位负责人 1是 0否
|
**/
|
private Byte iscompany;
|
|
/**
|
* 是否部门负责人 1是 0否
|
**/
|
private Byte isdepartment;
|
|
/**
|
* 是否上传 1是 0否
|
**/
|
private Byte isupload;
|
|
private String roleSign;
|
|
/*
|
是否是安全员
|
*/
|
private Byte issecurityofficer;
|
|
/**
|
* 工号
|
**/
|
@TableField(value = "empno")
|
private String empNo;
|
|
/**
|
* 设备MAC地址
|
**/
|
@TableField(value = "deviceno")
|
private String deviceNo;
|
|
/**
|
* 定位卡ID
|
**/
|
@TableField(value = "cardid")
|
private String cardId;
|
|
/**
|
* 坐标轴X
|
**/
|
@TableField(value = "crossX")
|
private BigDecimal crossX;
|
|
/**
|
* 坐标轴Y
|
**/
|
@TableField(value = "crossY")
|
private BigDecimal crossY;
|
|
@TableField(value = "area")
|
private Integer area;
|
|
@TableField(value = "latitude")
|
private BigDecimal latitude;
|
|
@TableField(value = "longitude")
|
private BigDecimal longitude;
|
|
@TableField(value = "layer")
|
private String layer;
|
|
private Date updateat;
|
|
private String slice;
|
|
private String province;
|
|
private String city;
|
|
private String county;
|
|
/**
|
* 行政级别 1-省(自治区) 2-地(市、州) 3-区/县
|
*/
|
private Integer executiveLevel;
|
/**
|
* 专业方向id
|
*/
|
private Long specialityId;
|
/**
|
* 专业等级(1初级,2中级,3高级,4其他)
|
*/
|
private Integer professionalLevel;
|
|
public Long getSpecialityId() {
|
return specialityId;
|
}
|
|
public void setSpecialityId(Long specialityId) {
|
this.specialityId = specialityId;
|
}
|
|
public Integer getProfessionalLevel() {
|
return professionalLevel;
|
}
|
|
public void setProfessionalLevel(Integer professionalLevel) {
|
this.professionalLevel = professionalLevel;
|
}
|
|
public Integer getExecutiveLevel() {
|
return executiveLevel;
|
}
|
|
public void setExecutiveLevel(Integer executiveLevel) {
|
this.executiveLevel = executiveLevel;
|
}
|
|
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 getCounty() {
|
return county;
|
}
|
|
public void setCounty(String county) {
|
this.county = county;
|
}
|
|
public Long getRoleid() {
|
return roleid;
|
}
|
|
public void setRoleid(Long roleid) {
|
this.roleid = roleid;
|
}
|
|
/**
|
* id
|
**/
|
public Long getId() {
|
return id;
|
}
|
|
/**
|
* id
|
**/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/**
|
* 用户名 username
|
**/
|
public String getUsername() {
|
return username;
|
}
|
|
/**
|
* 用户名 username
|
**/
|
public void setUsername(String username) {
|
this.username = username == null ? null : username.trim();
|
}
|
|
/**
|
* 密码 password
|
**/
|
public String getPassword() {
|
return password;
|
}
|
|
/**
|
* 密码 password
|
**/
|
public void setPassword(String password) {
|
this.password = password == null ? null : password.trim();
|
}
|
|
/**
|
* 邮箱 email
|
**/
|
public String getEmail() {
|
return email;
|
}
|
|
/**
|
* 邮箱 email
|
**/
|
public void setEmail(String email) {
|
this.email = email == null ? null : email.trim();
|
}
|
|
/**
|
* 单位 company
|
**/
|
public String getCompany() {
|
return company;
|
}
|
|
|
/**
|
* 职务 job
|
**/
|
public String getJob() {
|
return job;
|
}
|
|
/**
|
* 职务 job
|
**/
|
public void setJob(String job) {
|
this.job = job == null ? null : job.trim();
|
}
|
|
/**
|
* 创建人 createdby
|
**/
|
public String getCreatedby() {
|
return createdby;
|
}
|
|
/**
|
* 创建人 createdby
|
**/
|
public void setCreatedby(String createdby) {
|
this.createdby = createdby == null ? null : createdby.trim();
|
}
|
|
/**
|
* 创建时间 createddate
|
**/
|
public Date getCreateddate() {
|
return createddate;
|
}
|
|
/**
|
* 创建时间 createddate
|
**/
|
public void setCreateddate(Date createddate) {
|
this.createddate = createddate;
|
}
|
|
/**
|
* 更新人 lastmodifiedby
|
**/
|
public String getLastmodifiedby() {
|
return lastmodifiedby;
|
}
|
|
/**
|
* 更新人 lastmodifiedby
|
**/
|
public void setLastmodifiedby(String lastmodifiedby) {
|
this.lastmodifiedby = lastmodifiedby == null ? null : lastmodifiedby.trim();
|
}
|
|
/**
|
* 更新时间 lastmodifieddate
|
**/
|
public Date getLastmodifieddate() {
|
return lastmodifieddate;
|
}
|
|
/**
|
* 更新时间 lastmodifieddate
|
**/
|
public void setLastmodifieddate(Date lastmodifieddate) {
|
this.lastmodifieddate = lastmodifieddate;
|
}
|
|
/**
|
* 状态 status
|
**/
|
public Byte getStatus() {
|
return status;
|
}
|
|
/**
|
* 状态 status
|
**/
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
/**
|
* 到期时间 expiredate
|
**/
|
public Date getExpiredate() {
|
return expiredate;
|
}
|
|
/**
|
* 到期时间 expiredate
|
**/
|
public void setExpiredate(Date expiredate) {
|
this.expiredate = expiredate;
|
}
|
|
/**
|
* 是否删除 isdel
|
**/
|
public Byte getIsdel() {
|
return isdel;
|
}
|
|
/**
|
* 是否删除 isdel
|
**/
|
public void setIsdel(Byte isdel) {
|
this.isdel = isdel;
|
}
|
|
public String getRealname() {
|
return realname;
|
}
|
|
public void setRealname(String realname) {
|
this.realname = realname;
|
}
|
|
public String getIdcard() {
|
return idcard;
|
}
|
|
public void setIdcard(String idcard) {
|
this.idcard = idcard;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Byte getIscompany() {
|
return iscompany;
|
}
|
|
public void setIscompany(Byte iscompany) {
|
this.iscompany = iscompany;
|
}
|
|
public Byte getIsdepartment() {
|
return isdepartment;
|
}
|
|
public void setIsdepartment(Byte isdepartment) {
|
this.isdepartment = isdepartment;
|
}
|
|
public Byte getIsupload() {
|
return isupload;
|
}
|
|
public void setIsupload(Byte isupload) {
|
this.isupload = isupload;
|
}
|
|
public String getEmpNo() {
|
return empNo;
|
}
|
|
public void setEmpNo(String empNo) {
|
this.empNo = empNo;
|
}
|
|
public String getDeviceNo() {
|
return deviceNo;
|
}
|
|
public void setDeviceNo(String deviceNo) {
|
this.deviceNo = deviceNo;
|
}
|
|
public String getCardId() {
|
return cardId;
|
}
|
|
public void setCardId(String cardId) {
|
this.cardId = cardId;
|
}
|
|
public BigDecimal getCrossX() {
|
return crossX;
|
}
|
|
public void setCrossX(BigDecimal crossX) {
|
this.crossX = crossX;
|
}
|
|
public BigDecimal getCrossY() {
|
return crossY;
|
}
|
|
public void setCrossY(BigDecimal crossY) {
|
this.crossY = crossY;
|
}
|
|
public Date getUpdateat() {
|
return updateat;
|
}
|
|
public void setUpdateat(Date updateat) {
|
this.updateat = updateat;
|
}
|
|
public Integer getArea() {
|
return area;
|
}
|
|
public void setArea(Integer area) {
|
this.area = area;
|
}
|
|
public BigDecimal getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(BigDecimal latitude) {
|
this.latitude = latitude;
|
}
|
|
public BigDecimal getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(BigDecimal longitude) {
|
this.longitude = longitude;
|
}
|
|
public String getLayer() {
|
return layer;
|
}
|
|
public void setLayer(String layer) {
|
this.layer = layer;
|
}
|
|
public String getSlice() {
|
return slice;
|
}
|
|
public void setSlice(String slice) {
|
this.slice = slice;
|
}
|
|
public String getRoleSign() {
|
return roleSign;
|
}
|
|
public void setRoleSign(String roleSign) {
|
this.roleSign = roleSign;
|
}
|
|
public Long getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(Long companyid) {
|
this.companyid = companyid;
|
}
|
|
|
public Byte getIssecurityofficer() {
|
return issecurityofficer;
|
}
|
|
public void setIssecurityofficer(Byte issecurityofficer) {
|
this.issecurityofficer = issecurityofficer;
|
}
|
|
|
public void setDepartment(Long department) {
|
this.department = department;
|
}
|
|
public String getDepartmentname() {
|
return departmentname;
|
}
|
|
public void setDepartmentname(String departmentname) {
|
this.departmentname = departmentname;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
|
public Long getDepartment() {
|
return department;
|
}
|
}
|