对比新文件 |
| | |
| | | package com.gk.firework.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.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; |
| | | |
| | | /** 邮箱 email **/ |
| | | private String email; |
| | | |
| | | /** 统一社会信用代码 code **/ |
| | | private String code; |
| | | |
| | | /** 办公电话 phone **/ |
| | | private String phone; |
| | | |
| | | /** 手机号 mobile **/ |
| | | private String mobile; |
| | | |
| | | /** 单位 company **/ |
| | | private String company; |
| | | |
| | | /** 部门 department **/ |
| | | private String department; |
| | | |
| | | /** 职务 job **/ |
| | | private String job; |
| | | |
| | | /** 创建人 createdby **/ |
| | | private String createdby; |
| | | |
| | | /** 创建时间 createddate **/ |
| | | private Date createddate; |
| | | |
| | | /** 更新人 lastmodifiedby **/ |
| | | private String lastmodifiedby; |
| | | |
| | | /** 更新时间 lastmodifieddate **/ |
| | | private Date lastmodifieddate; |
| | | |
| | | /** 省份 province **/ |
| | | private String province; |
| | | |
| | | /** 城市 city **/ |
| | | private String city; |
| | | |
| | | /** 区县 area **/ |
| | | private String area; |
| | | |
| | | /** 乡镇 town **/ |
| | | private String town; |
| | | |
| | | /** 社区 community **/ |
| | | private String community; |
| | | |
| | | /** 所属企业id companyid **/ |
| | | private Long companyid; |
| | | |
| | | /** 状态 status **/ |
| | | private Byte status; |
| | | |
| | | /** 到期时间 expiredate **/ |
| | | private Date expiredate; |
| | | |
| | | /** 是否删除 isdel **/ |
| | | private Byte isdel; |
| | | |
| | | /** 是否销售端 issale **/ |
| | | private Byte issale; |
| | | |
| | | /** # 1超级管理员,2管理员,3普通用户 **/ |
| | | private Integer type; |
| | | //企业单位编号 |
| | | private String companynumber; |
| | | |
| | | private Date deadline; |
| | | |
| | | /** 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(); |
| | | } |
| | | |
| | | /** 办公电话 phone **/ |
| | | public String getPhone() { |
| | | return phone; |
| | | } |
| | | |
| | | /** 办公电话 phone **/ |
| | | public void setPhone(String phone) { |
| | | this.phone = phone == null ? null : phone.trim(); |
| | | } |
| | | |
| | | /** 手机号 mobile **/ |
| | | public String getMobile() { |
| | | return mobile; |
| | | } |
| | | |
| | | /** 手机号 mobile **/ |
| | | public void setMobile(String mobile) { |
| | | this.mobile = mobile; |
| | | } |
| | | |
| | | /** 单位 company **/ |
| | | public String getCompany() { |
| | | return company; |
| | | } |
| | | |
| | | /** 单位 company **/ |
| | | public void setCompany(String company) { |
| | | this.company = company == null ? null : company.trim(); |
| | | } |
| | | |
| | | /** 部门 department **/ |
| | | public String getDepartment() { |
| | | return department; |
| | | } |
| | | |
| | | /** 部门 department **/ |
| | | public void setDepartment(String department) { |
| | | this.department = department == null ? null : department.trim(); |
| | | } |
| | | |
| | | /** 职务 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; |
| | | } |
| | | |
| | | /** 省份 province **/ |
| | | public String getProvince() { |
| | | return province; |
| | | } |
| | | |
| | | /** 省份 province **/ |
| | | public void setProvince(String province) { |
| | | this.province = province == null ? null : province.trim(); |
| | | } |
| | | |
| | | /** 城市 city **/ |
| | | public String getCity() { |
| | | return city; |
| | | } |
| | | |
| | | /** 城市 city **/ |
| | | public void setCity(String city) { |
| | | this.city = city == null ? null : city.trim(); |
| | | } |
| | | |
| | | /** 区县 area **/ |
| | | public String getArea() { |
| | | return area; |
| | | } |
| | | |
| | | /** 区县 area **/ |
| | | public void setArea(String area) { |
| | | this.area = area == null ? null : area.trim(); |
| | | } |
| | | |
| | | /** 乡镇 town **/ |
| | | public String getTown() { |
| | | return town; |
| | | } |
| | | |
| | | /** 乡镇 town **/ |
| | | public void setTown(String town) { |
| | | this.town = town == null ? null : town.trim(); |
| | | } |
| | | |
| | | /** 社区 community **/ |
| | | public String getCommunity() { |
| | | return community; |
| | | } |
| | | |
| | | /** 社区 community **/ |
| | | public void setCommunity(String community) { |
| | | this.community = community == null ? null : community.trim(); |
| | | } |
| | | |
| | | /** 所属企业id companyid **/ |
| | | public Long getCompanyid() { |
| | | return companyid; |
| | | } |
| | | |
| | | /** 所属企业id companyid **/ |
| | | public void setCompanyid(Long companyid) { |
| | | this.companyid = companyid; |
| | | } |
| | | |
| | | /** 状态 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; |
| | | } |
| | | |
| | | /** 是否销售端 issale **/ |
| | | public Byte getIssale() { |
| | | return issale; |
| | | } |
| | | |
| | | /** 是否销售端 issale **/ |
| | | public void setIssale(Byte issale) { |
| | | this.issale = issale; |
| | | } |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getCompanynumber() { |
| | | return companynumber; |
| | | } |
| | | |
| | | public void setCompanynumber(String companynumber) { |
| | | this.companynumber = companynumber; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public Date getDeadline() { |
| | | return deadline; |
| | | } |
| | | |
| | | public void setDeadline(Date deadline) { |
| | | this.deadline = deadline; |
| | | } |
| | | } |