|
@ -1,250 +0,0 @@
|
|
|
package com.yihu.jw.entity.base.user;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
|
* BaseEmploy entity. @author MyEclipse Persistence Tools
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "base_employ")
|
|
|
public class EmployDO extends UuidIdentityEntityWithOperator {
|
|
|
|
|
|
// Fields
|
|
|
private String saasId; //saasIDF
|
|
|
private String name; //名字
|
|
|
private String pyCode; //拼音
|
|
|
private String ssc;//医保卡号
|
|
|
private String sex; //性别
|
|
|
private String photo; //头像
|
|
|
private String skill;//专长
|
|
|
private String workPortal;//医生门户首页
|
|
|
private String email;//邮箱
|
|
|
private String phone;//联系电话
|
|
|
private String password;//账户密码
|
|
|
private String salt;//账户密码的盐
|
|
|
private String idcard;//身份证号
|
|
|
private String secondPhone;//备用电话
|
|
|
private String familyTel;//家庭电话(固)
|
|
|
private String officeTel;//办公电话(固)
|
|
|
private String introduction;//简介
|
|
|
private String jxzc;//教学职称
|
|
|
private String lczc;//临床职称
|
|
|
private String xlzc;//学历职称
|
|
|
private String xzzc;//行政职称
|
|
|
private Integer status;//-1 删除 0 禁用 1可用
|
|
|
|
|
|
// Constructors
|
|
|
|
|
|
/** default constructor */
|
|
|
public EmployDO() {
|
|
|
}
|
|
|
|
|
|
/** minimal constructor */
|
|
|
public EmployDO(String id, String saasId) {
|
|
|
this.id = id;
|
|
|
this.saasId = saasId;
|
|
|
}
|
|
|
|
|
|
|
|
|
@Column(name = "saas_id", nullable = false, length = 50)
|
|
|
public String getSaasId() {
|
|
|
return this.saasId;
|
|
|
}
|
|
|
|
|
|
public void setSaasId(String saasId) {
|
|
|
this.saasId = saasId;
|
|
|
}
|
|
|
|
|
|
@Column(name = "name", length = 50)
|
|
|
public String getName() {
|
|
|
return this.name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
@Column(name = "py_code", length = 50)
|
|
|
public String getPyCode() {
|
|
|
return this.pyCode;
|
|
|
}
|
|
|
|
|
|
public void setPyCode(String pyCode) {
|
|
|
this.pyCode = pyCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sex", length = 10)
|
|
|
public String getSex() {
|
|
|
return this.sex;
|
|
|
}
|
|
|
|
|
|
public void setSex(String sex) {
|
|
|
this.sex = sex;
|
|
|
}
|
|
|
|
|
|
@Column(name = "photo", length = 256)
|
|
|
public String getPhoto() {
|
|
|
return this.photo;
|
|
|
}
|
|
|
|
|
|
public void setPhoto(String photo) {
|
|
|
this.photo = photo;
|
|
|
}
|
|
|
|
|
|
@Column(name = "skill", length = 100)
|
|
|
public String getSkill() {
|
|
|
return this.skill;
|
|
|
}
|
|
|
|
|
|
public void setSkill(String skill) {
|
|
|
this.skill = skill;
|
|
|
}
|
|
|
|
|
|
@Column(name = "work_portal", length = 256)
|
|
|
public String getWorkPortal() {
|
|
|
return this.workPortal;
|
|
|
}
|
|
|
|
|
|
public void setWorkPortal(String workPortal) {
|
|
|
this.workPortal = workPortal;
|
|
|
}
|
|
|
|
|
|
@Column(name = "email", length = 64)
|
|
|
public String getEmail() {
|
|
|
return this.email;
|
|
|
}
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
this.email = email;
|
|
|
}
|
|
|
|
|
|
@Column(name = "phone", length = 20)
|
|
|
public String getPhone() {
|
|
|
return this.phone;
|
|
|
}
|
|
|
|
|
|
public void setPhone(String phone) {
|
|
|
this.phone = phone;
|
|
|
}
|
|
|
|
|
|
@Column(name = "second_phone", length = 20)
|
|
|
public String getSecondPhone() {
|
|
|
return this.secondPhone;
|
|
|
}
|
|
|
|
|
|
public void setSecondPhone(String secondPhone) {
|
|
|
this.secondPhone = secondPhone;
|
|
|
}
|
|
|
|
|
|
@Column(name = "family_tel", length = 20)
|
|
|
public String getFamilyTel() {
|
|
|
return this.familyTel;
|
|
|
}
|
|
|
|
|
|
public void setFamilyTel(String familyTel) {
|
|
|
this.familyTel = familyTel;
|
|
|
}
|
|
|
|
|
|
@Column(name = "office_tel", length = 20)
|
|
|
public String getOfficeTel() {
|
|
|
return this.officeTel;
|
|
|
}
|
|
|
|
|
|
public void setOfficeTel(String officeTel) {
|
|
|
this.officeTel = officeTel;
|
|
|
}
|
|
|
|
|
|
@Column(name = "introduction", length = 256)
|
|
|
public String getIntroduction() {
|
|
|
return this.introduction;
|
|
|
}
|
|
|
|
|
|
public void setIntroduction(String introduction) {
|
|
|
this.introduction = introduction;
|
|
|
}
|
|
|
|
|
|
@Column(name = "jxzc", length = 50)
|
|
|
public String getJxzc() {
|
|
|
return this.jxzc;
|
|
|
}
|
|
|
|
|
|
public void setJxzc(String jxzc) {
|
|
|
this.jxzc = jxzc;
|
|
|
}
|
|
|
|
|
|
@Column(name = "lczc", length = 50)
|
|
|
public String getLczc() {
|
|
|
return this.lczc;
|
|
|
}
|
|
|
|
|
|
public void setLczc(String lczc) {
|
|
|
this.lczc = lczc;
|
|
|
}
|
|
|
|
|
|
@Column(name = "xlzc", length = 50)
|
|
|
public String getXlzc() {
|
|
|
return this.xlzc;
|
|
|
}
|
|
|
|
|
|
public void setXlzc(String xlzc) {
|
|
|
this.xlzc = xlzc;
|
|
|
}
|
|
|
|
|
|
@Column(name = "xzzc", length = 50)
|
|
|
public String getXzzc() {
|
|
|
return this.xzzc;
|
|
|
}
|
|
|
|
|
|
public void setXzzc(String xzzc) {
|
|
|
this.xzzc = xzzc;
|
|
|
}
|
|
|
|
|
|
@Column(name = "status")
|
|
|
public Integer getStatus() {
|
|
|
return this.status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
@Column(name = "password")
|
|
|
public String getPassword() {
|
|
|
return password;
|
|
|
}
|
|
|
|
|
|
public void setPassword(String password) {
|
|
|
this.password = password;
|
|
|
}
|
|
|
|
|
|
@Column(name = "salt")
|
|
|
public String getSalt() {
|
|
|
return salt;
|
|
|
}
|
|
|
|
|
|
public void setSalt(String salt) {
|
|
|
this.salt = salt;
|
|
|
}
|
|
|
|
|
|
@Column(name = "idcard")
|
|
|
public String getIdcard() {
|
|
|
return idcard;
|
|
|
}
|
|
|
|
|
|
public void setIdcard(String idcard) {
|
|
|
this.idcard = idcard;
|
|
|
}
|
|
|
|
|
|
@Column(name = "ssc")
|
|
|
public String getSsc() {
|
|
|
return ssc;
|
|
|
}
|
|
|
|
|
|
public void setSsc(String ssc) {
|
|
|
this.ssc = ssc;
|
|
|
}
|
|
|
}
|