package com.ltkj.common.core.domain.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 用户信息详情对象 dict_user_info
|
*
|
* @author ltkj
|
* @date 2022-11-15
|
*/
|
@Data
|
@ApiModel(value = "用户详情对象")
|
@TableName("dict_user_info")
|
public class DictUserInfo extends BaseEntity implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId
|
private String id;
|
|
//用户id
|
@ApiModelProperty(value = "用户id")
|
private Long userId;
|
|
/**
|
* 组织ID
|
*/
|
@Excel(name = "组织ID")
|
@ApiModelProperty(value = "组织ID")
|
private String hospId;
|
|
/**
|
* 组织中文名称
|
*/
|
@Excel(name = "组织中文名称")
|
@ApiModelProperty(value = "组织中文名称")
|
private String hospName;
|
|
/**
|
* 组织类型(PT10.06.17)
|
*/
|
@Excel(name = "组织类型", readConverterExp = "P=T10.06.17")
|
@ApiModelProperty(value = "组织类型")
|
private String orgType;
|
|
/**
|
* 姓名
|
*/
|
@Excel(name = "姓名")
|
@ApiModelProperty(value = "姓名")
|
private String staffName;
|
|
/**
|
* 英文名
|
*/
|
@Excel(name = "英文名")
|
@ApiModelProperty(value = "英文名")
|
private String staffEnName;
|
|
/**
|
* 拼音
|
*/
|
@Excel(name = "拼音")
|
@ApiModelProperty(value = "拼音")
|
private String spell;
|
|
/**
|
* 人员编码
|
*/
|
@Excel(name = "人员编码")
|
@ApiModelProperty(value = "人员编码")
|
private String staffCode;
|
|
/**
|
* 出生日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "出生日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "出生日期")
|
private Date brithday;
|
|
/**
|
* 民族码值(GB/T3304-1991)
|
*/
|
@Excel(name = "民族码值", readConverterExp = "G=B/T3304-1991")
|
@ApiModelProperty(value = "民族码值")
|
private String nationCode;
|
|
/**
|
* 民族描述
|
*/
|
@Excel(name = "民族描述")
|
@ApiModelProperty(value = "民族描述")
|
private String nationDesc;
|
|
/**
|
* 证件类型(CV02.01.101)
|
*/
|
@Excel(name = "证件类型", readConverterExp = "C=V02.01.101")
|
@ApiModelProperty(value = "证件类型")
|
private String certificateType;
|
|
/**
|
* 证件号码
|
*/
|
@Excel(name = "证件号码")
|
@ApiModelProperty(value = "证件号码")
|
private String certificateNo;
|
|
/**
|
* 身份证件号
|
*/
|
@Excel(name = "身份证件号")
|
@ApiModelProperty(value = "身份证件号")
|
private String cardNo;
|
|
/**
|
* 婚姻码值(GB/T2261_2-2003)
|
*/
|
@Excel(name = "婚姻码值", readConverterExp = "G=B/T2261_2-2003")
|
@ApiModelProperty(value = "婚姻码值")
|
private String marriageCode;
|
|
/**
|
* 婚姻描述
|
*/
|
@Excel(name = "婚姻描述")
|
@ApiModelProperty(value = "婚姻描述")
|
private String marriageDesc;
|
|
/**
|
* 籍贯
|
*/
|
@Excel(name = "籍贯")
|
@ApiModelProperty(value = "籍贯")
|
private String homeTown;
|
|
/**
|
* 出生地址
|
*/
|
@Excel(name = "出生地址")
|
@ApiModelProperty(value = "出生地址")
|
private String brithAddr;
|
|
/**
|
* 现居住地址
|
*/
|
@Excel(name = "现居住地址")
|
@ApiModelProperty(value = "现居住地址")
|
private String liveAddr;
|
|
/**
|
* 移动电话
|
*/
|
@Excel(name = "移动电话")
|
@ApiModelProperty(value = "移动电话")
|
private String phone;
|
|
/**
|
* 办公室联系电话
|
*/
|
@Excel(name = "办公室联系电话")
|
@ApiModelProperty(value = "办公室联系电话")
|
private String officePhone;
|
|
/**
|
* 邮政编码
|
*/
|
@Excel(name = "邮政编码")
|
@ApiModelProperty(value = "邮政编码")
|
private String postCode;
|
|
/**
|
* 电子邮箱
|
*/
|
@Excel(name = "电子邮箱")
|
@ApiModelProperty(value = "电子邮箱")
|
private String email;
|
|
/**
|
* 人员类别(PT10.01.009)
|
*/
|
@Excel(name = "人员类别", readConverterExp = "P=T10.01.009")
|
@ApiModelProperty(value = "人员类别")
|
private String kindCode;
|
|
/**
|
* 学历码值(GB/T4658-2006)
|
*/
|
@Excel(name = "学历码值", readConverterExp = "G=B/T4658-2006")
|
private String educationCode;
|
|
/**
|
* 学历描述
|
*/
|
@Excel(name = "学历描述")
|
private String educationDesc;
|
|
/**
|
* 学位码值(GB/T6864-2003)
|
*/
|
@Excel(name = "学位码值", readConverterExp = "G=B/T6864-2003")
|
private String degreeCode;
|
|
/**
|
* 所学专业码值(CT98_00_023)
|
*/
|
@Excel(name = "所学专业码值", readConverterExp = "C=T98_00_023")
|
private String professionalCode;
|
|
/**
|
* 专业技术职务类别码值(CV08.30.005)
|
*/
|
@Excel(name = "专业技术职务类别码值", readConverterExp = "C=V08.30.005")
|
private String postionTypeCode;
|
|
/**
|
* 专业技术职务码值(GB/T 8561-2001)
|
*/
|
@Excel(name = "专业技术职务码值", readConverterExp = "G=B/T,8=561-2001")
|
private String positionCode;
|
|
/**
|
* 健康状况码值(GB/T2261_3-2003)
|
*/
|
@Excel(name = "健康状况码值", readConverterExp = "G=B/T2261_3-2003")
|
private String healthStatusCode;
|
|
/**
|
* 行政管理职务(PT10.01.012)
|
*/
|
@Excel(name = "行政管理职务", readConverterExp = "P=T10.01.012")
|
private String managerPosition;
|
|
/**
|
* 处方职称(PT10.01.029)
|
*/
|
@Excel(name = "处方职称", readConverterExp = "处方职称(PT10.01.029)")
|
private String cftitle;
|
|
/**
|
* 参加工作日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "参加工作日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "参加工作日期")
|
private Date workDate;
|
|
/**
|
* 调入/调出时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "调入/调出时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date drcDate;
|
|
/**
|
* 简介
|
*/
|
@Excel(name = "简介")
|
private String profile;
|
|
/**
|
* 是否由乡镇卫生院或社区卫生服务机构派驻村卫生室工作(CT01.00.002)
|
*/
|
@Excel(name = "是否由乡镇卫生院或社区卫生服务机构派驻村卫生室工作", readConverterExp = "C=T01.00.002")
|
private String stationed;
|
|
/**
|
* 是否中国科学院士和中国工程院院士(CT01.00.002)
|
*/
|
@Excel(name = "是否中国科学院士和中国工程院院士", readConverterExp = "C=T01.00.002")
|
private String academician;
|
|
/**
|
* 是否有突出贡献的中青年科学、技术、管理专家(CT01.00.002)
|
*/
|
@Excel(name = "是否有突出贡献的中青年科学、技术、管理专家", readConverterExp = "C=T01.00.002")
|
private String expert;
|
|
/**
|
* 是否享受国务院政府特殊津贴人员(CT01.00.002)
|
*/
|
@Excel(name = "是否享受国务院政府特殊津贴人员", readConverterExp = "C=T01.00.002")
|
private String allowance;
|
|
/**
|
* 是否新世纪百千万人才工程国家级人选(CT01.00.002)
|
*/
|
@Excel(name = "是否新世纪百千万人才工程国家级人选", readConverterExp = "C=T01.00.002")
|
private String nationPeople;
|
|
/**
|
* 是否国家科技奖项负责人(CT01.00.002)
|
*/
|
@Excel(name = "是否国家科技奖项负责人", readConverterExp = "C=T01.00.002")
|
private String technologyHeadPeople;
|
|
/**
|
* 是否急救人员(CT01.00.002)
|
*/
|
@Excel(name = "是否急救人员", readConverterExp = "C=T01.00.002")
|
private String responder;
|
|
/**
|
* 医师执业类别码值(CT98.00.024)
|
*/
|
@Excel(name = "医师执业类别码值", readConverterExp = "C=T98.00.024")
|
private String phyPrcaticeTypeCod;
|
|
/**
|
* 医师-执业范围码值(CT98.00.031)
|
*/
|
@Excel(name = "医师-执业范围码值", readConverterExp = "C=T98.00.031")
|
private String phyPrcaticeScopeCode;
|
|
/**
|
* 医师-执业资格名称
|
*/
|
@Excel(name = "医师-执业资格名称")
|
private String phyQualifiedName;
|
|
/**
|
* 医师-执业资格证书编码
|
*/
|
@Excel(name = "医师-执业资格证书编码")
|
private String phyQualifiedCertifiedNo;
|
|
/**
|
* 医师-执业证书编码
|
*/
|
@Excel(name = "医师-执业证书编码")
|
private String phyPracticeCertificateNo;
|
|
/**
|
* 医师-注册时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "医师-注册时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date phyRegisterDate;
|
|
/**
|
* 医师-注册有效期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "医师-注册有效期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date phyRegisterValidDate;
|
|
/**
|
* 医师-注册地
|
*/
|
@Excel(name = "医师-注册地")
|
private String phyRegisterAddress;
|
|
/**
|
* 编制情况(PT10.01.019)
|
*/
|
@Excel(name = "编制情况", readConverterExp = "P=T10.01.019")
|
private String formation;
|
|
/**
|
* 医保职称
|
*/
|
@Excel(name = "医保职称")
|
private String medicalTitle;
|
|
/**
|
* 医保编码
|
*/
|
@Excel(name = "医保编码")
|
private String medicalId;
|
|
/**
|
* 多机构执业医师(CT01.00.002)
|
*/
|
@Excel(name = "多机构执业医师", readConverterExp = "C=T01.00.002")
|
private String moreHospPhy;
|
|
/**
|
* 药师-注册证书编号
|
*/
|
@Excel(name = "药师-注册证书编号")
|
private String phaPracticeCertificateCode;
|
|
/**
|
* 药师-执业类别码值(CY00.00.008)
|
*/
|
@Excel(name = "药师-执业类别码值", readConverterExp = "C=Y00.00.008")
|
private String phaPrcaticeTypeCode;
|
|
/**
|
* 药师-执业范围码值(CY00.00.009)
|
*/
|
@Excel(name = "药师-执业范围码值", readConverterExp = "C=Y00.00.009")
|
private String phaPrcaticeScopeCode;
|
|
/**
|
* 药师-注册时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "药师-注册时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date phaRegisterDate;
|
|
/**
|
* 药师-注册有效期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "药师-注册有效期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date phaRegisterValidDate;
|
|
/**
|
* 药师-注册地
|
*/
|
@Excel(name = "药师-注册地")
|
private String phaRegisterAddress;
|
|
/**
|
* 专家-资格证号
|
*/
|
@Excel(name = "专家-资格证号")
|
private Long phaCertifiedNo;
|
|
/**
|
* 专家职称级别码值(CY00.00.158)
|
*/
|
@Excel(name = "专家职称级别码值", readConverterExp = "C=Y00.00.158")
|
private String expJobLevelCode;
|
|
/**
|
* 擅长领域
|
*/
|
@Excel(name = "擅长领域")
|
private String expGoodArea;
|
|
/**
|
* 锁定标志
|
*/
|
@Excel(name = "锁定标志")
|
private Long locked;
|
|
/**
|
* 排序
|
*/
|
@Excel(name = "排序")
|
private Long orderNum;
|
|
/**
|
* 数据状态(PT10.00.004)
|
*/
|
@Excel(name = "数据状态(PT10.00.004)")
|
private String effective;
|
|
/**
|
* 政治面貌(GB/T4762)
|
*/
|
@Excel(name = "政治面貌", readConverterExp = "G=B/T4762")
|
private String politicalStatus;
|
|
/**
|
* 加入党派日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "加入党派日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date joinpartisanDate;
|
|
/**
|
* 职业资格证书名称
|
*/
|
@Excel(name = "职业资格证书名称")
|
private String proQualiCertificate;
|
|
/**
|
* 入职日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "入职日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date entryDate;
|
|
/**
|
* 是否签订合同(CT01.00.002)
|
*/
|
@Excel(name = "是否签订合同", readConverterExp = "是否签订合同(CT01.00.002)")
|
private String whetherContract;
|
|
/**
|
* 是否实习(CT01.00.002)
|
*/
|
@Excel(name = "是否实习", readConverterExp = "是否实习(CT01.00.002)")
|
private String internshIp;
|
|
/**
|
* 五笔
|
*/
|
@Excel(name = "五笔")
|
@ApiModelProperty(value = "五笔")
|
private String wbm;
|
|
/**
|
* 籍贯
|
*/
|
@Excel(name = "籍贯")
|
@ApiModelProperty(value = "籍贯")
|
private String homeTownDesc;
|
|
/**
|
* 微信openid
|
*/
|
@Excel(name = "微信openid")
|
@ApiModelProperty(value = "微信号")
|
private Long openId;
|
|
/**
|
* 在职类别(PT10.06.18)
|
*/
|
@Excel(name = "在职类别", readConverterExp = "P=T10.06.18")
|
private String jobCategory;
|
|
@TableField(fill = FieldFill.INSERT)
|
private String createBy;
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(fill = FieldFill.INSERT)
|
private Date createTime;
|
|
public void setHospId(String hospId) {
|
this.hospId = hospId;
|
}
|
|
public String getHospId() {
|
return hospId;
|
}
|
|
public void setHospName(String hospName) {
|
this.hospName = hospName;
|
}
|
|
public String getHospName() {
|
return hospName;
|
}
|
|
public void setOrgType(String orgType) {
|
this.orgType = orgType;
|
}
|
|
public String getOrgType() {
|
return orgType;
|
}
|
|
public void setStaffName(String staffName) {
|
this.staffName = staffName;
|
}
|
|
public String getStaffName() {
|
return staffName;
|
}
|
|
public void setStaffEnName(String staffEnName) {
|
this.staffEnName = staffEnName;
|
}
|
|
public String getStaffEnName() {
|
return staffEnName;
|
}
|
|
public void setSpell(String spell) {
|
this.spell = spell;
|
}
|
|
public String getSpell() {
|
return spell;
|
}
|
|
public void setStaffCode(String staffCode) {
|
this.staffCode = staffCode;
|
}
|
|
public String getStaffCode() {
|
return staffCode;
|
}
|
|
public void setBrithday(Date brithday) {
|
this.brithday = brithday;
|
}
|
|
public Date getBrithday() {
|
return brithday;
|
}
|
|
public void setNationCode(String nationCode) {
|
this.nationCode = nationCode;
|
}
|
|
public String getNationCode() {
|
return nationCode;
|
}
|
|
public void setNationDesc(String nationDesc) {
|
this.nationDesc = nationDesc;
|
}
|
|
public String getNationDesc() {
|
return nationDesc;
|
}
|
|
public void setCertificateType(String certificateType) {
|
this.certificateType = certificateType;
|
}
|
|
public String getCertificateType() {
|
return certificateType;
|
}
|
|
public void setCertificateNo(String certificateNo) {
|
this.certificateNo = certificateNo;
|
}
|
|
public String getCertificateNo() {
|
return certificateNo;
|
}
|
|
public void setCardNo(String cardNo) {
|
this.cardNo = cardNo;
|
}
|
|
public String getCardNo() {
|
return cardNo;
|
}
|
|
public void setMarriageCode(String marriageCode) {
|
this.marriageCode = marriageCode;
|
}
|
|
public String getMarriageCode() {
|
return marriageCode;
|
}
|
|
public void setMarriageDesc(String marriageDesc) {
|
this.marriageDesc = marriageDesc;
|
}
|
|
public String getMarriageDesc() {
|
return marriageDesc;
|
}
|
|
public void setHomeTown(String homeTown) {
|
this.homeTown = homeTown;
|
}
|
|
public String getHomeTown() {
|
return homeTown;
|
}
|
|
public void setBrithAddr(String brithAddr) {
|
this.brithAddr = brithAddr;
|
}
|
|
public String getBrithAddr() {
|
return brithAddr;
|
}
|
|
public void setLiveAddr(String liveAddr) {
|
this.liveAddr = liveAddr;
|
}
|
|
public String getLiveAddr() {
|
return liveAddr;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setOfficePhone(String officePhone) {
|
this.officePhone = officePhone;
|
}
|
|
public String getOfficePhone() {
|
return officePhone;
|
}
|
|
public void setPostCode(String postCode) {
|
this.postCode = postCode;
|
}
|
|
public String getPostCode() {
|
return postCode;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setKindCode(String kindCode) {
|
this.kindCode = kindCode;
|
}
|
|
public String getKindCode() {
|
return kindCode;
|
}
|
|
public void setEducationCode(String educationCode) {
|
this.educationCode = educationCode;
|
}
|
|
public String getEducationCode() {
|
return educationCode;
|
}
|
|
public void setEducationDesc(String educationDesc) {
|
this.educationDesc = educationDesc;
|
}
|
|
public String getEducationDesc() {
|
return educationDesc;
|
}
|
|
public void setDegreeCode(String degreeCode) {
|
this.degreeCode = degreeCode;
|
}
|
|
public String getDegreeCode() {
|
return degreeCode;
|
}
|
|
public void setProfessionalCode(String professionalCode) {
|
this.professionalCode = professionalCode;
|
}
|
|
public String getProfessionalCode() {
|
return professionalCode;
|
}
|
|
public void setPostionTypeCode(String postionTypeCode) {
|
this.postionTypeCode = postionTypeCode;
|
}
|
|
public String getPostionTypeCode() {
|
return postionTypeCode;
|
}
|
|
public void setPositionCode(String positionCode) {
|
this.positionCode = positionCode;
|
}
|
|
public String getPositionCode() {
|
return positionCode;
|
}
|
|
public void setHealthStatusCode(String healthStatusCode) {
|
this.healthStatusCode = healthStatusCode;
|
}
|
|
public String getHealthStatusCode() {
|
return healthStatusCode;
|
}
|
|
public void setManagerPosition(String managerPosition) {
|
this.managerPosition = managerPosition;
|
}
|
|
public String getManagerPosition() {
|
return managerPosition;
|
}
|
|
public void setCftitle(String cftitle) {
|
this.cftitle = cftitle;
|
}
|
|
public String getCftitle() {
|
return cftitle;
|
}
|
|
public void setWorkDate(Date workDate) {
|
this.workDate = workDate;
|
}
|
|
public Date getWorkDate() {
|
return workDate;
|
}
|
|
public void setDrcDate(Date drcDate) {
|
this.drcDate = drcDate;
|
}
|
|
public Date getDrcDate() {
|
return drcDate;
|
}
|
|
public void setProfile(String profile) {
|
this.profile = profile;
|
}
|
|
public String getProfile() {
|
return profile;
|
}
|
|
public void setStationed(String stationed) {
|
this.stationed = stationed;
|
}
|
|
public String getStationed() {
|
return stationed;
|
}
|
|
public void setAcademician(String academician) {
|
this.academician = academician;
|
}
|
|
public String getAcademician() {
|
return academician;
|
}
|
|
public void setExpert(String expert) {
|
this.expert = expert;
|
}
|
|
public String getExpert() {
|
return expert;
|
}
|
|
public void setAllowance(String allowance) {
|
this.allowance = allowance;
|
}
|
|
public String getAllowance() {
|
return allowance;
|
}
|
|
public void setNationPeople(String nationPeople) {
|
this.nationPeople = nationPeople;
|
}
|
|
public String getNationPeople() {
|
return nationPeople;
|
}
|
|
public void setTechnologyHeadPeople(String technologyHeadPeople) {
|
this.technologyHeadPeople = technologyHeadPeople;
|
}
|
|
public String getTechnologyHeadPeople() {
|
return technologyHeadPeople;
|
}
|
|
public void setResponder(String responder) {
|
this.responder = responder;
|
}
|
|
public String getResponder() {
|
return responder;
|
}
|
|
public void setPhyPrcaticeTypeCod(String phyPrcaticeTypeCod) {
|
this.phyPrcaticeTypeCod = phyPrcaticeTypeCod;
|
}
|
|
public String getPhyPrcaticeTypeCod() {
|
return phyPrcaticeTypeCod;
|
}
|
|
public void setPhyPrcaticeScopeCode(String phyPrcaticeScopeCode) {
|
this.phyPrcaticeScopeCode = phyPrcaticeScopeCode;
|
}
|
|
public String getPhyPrcaticeScopeCode() {
|
return phyPrcaticeScopeCode;
|
}
|
|
public void setPhyQualifiedName(String phyQualifiedName) {
|
this.phyQualifiedName = phyQualifiedName;
|
}
|
|
public String getPhyQualifiedName() {
|
return phyQualifiedName;
|
}
|
|
public void setPhyQualifiedCertifiedNo(String phyQualifiedCertifiedNo) {
|
this.phyQualifiedCertifiedNo = phyQualifiedCertifiedNo;
|
}
|
|
public String getPhyQualifiedCertifiedNo() {
|
return phyQualifiedCertifiedNo;
|
}
|
|
public void setPhyPracticeCertificateNo(String phyPracticeCertificateNo) {
|
this.phyPracticeCertificateNo = phyPracticeCertificateNo;
|
}
|
|
public String getPhyPracticeCertificateNo() {
|
return phyPracticeCertificateNo;
|
}
|
|
public void setPhyRegisterDate(Date phyRegisterDate) {
|
this.phyRegisterDate = phyRegisterDate;
|
}
|
|
public Date getPhyRegisterDate() {
|
return phyRegisterDate;
|
}
|
|
public void setPhyRegisterValidDate(Date phyRegisterValidDate) {
|
this.phyRegisterValidDate = phyRegisterValidDate;
|
}
|
|
public Date getPhyRegisterValidDate() {
|
return phyRegisterValidDate;
|
}
|
|
public void setPhyRegisterAddress(String phyRegisterAddress) {
|
this.phyRegisterAddress = phyRegisterAddress;
|
}
|
|
public String getPhyRegisterAddress() {
|
return phyRegisterAddress;
|
}
|
|
public void setFormation(String formation) {
|
this.formation = formation;
|
}
|
|
public String getFormation() {
|
return formation;
|
}
|
|
public void setMedicalTitle(String medicalTitle) {
|
this.medicalTitle = medicalTitle;
|
}
|
|
public String getMedicalTitle() {
|
return medicalTitle;
|
}
|
|
public void setMedicalId(String medicalId) {
|
this.medicalId = medicalId;
|
}
|
|
public String getMedicalId() {
|
return medicalId;
|
}
|
|
public void setMoreHospPhy(String moreHospPhy) {
|
this.moreHospPhy = moreHospPhy;
|
}
|
|
public String getMoreHospPhy() {
|
return moreHospPhy;
|
}
|
|
public void setPhaPracticeCertificateCode(String phaPracticeCertificateCode) {
|
this.phaPracticeCertificateCode = phaPracticeCertificateCode;
|
}
|
|
public String getPhaPracticeCertificateCode() {
|
return phaPracticeCertificateCode;
|
}
|
|
public void setPhaPrcaticeTypeCode(String phaPrcaticeTypeCode) {
|
this.phaPrcaticeTypeCode = phaPrcaticeTypeCode;
|
}
|
|
public String getPhaPrcaticeTypeCode() {
|
return phaPrcaticeTypeCode;
|
}
|
|
public void setPhaPrcaticeScopeCode(String phaPrcaticeScopeCode) {
|
this.phaPrcaticeScopeCode = phaPrcaticeScopeCode;
|
}
|
|
public String getPhaPrcaticeScopeCode() {
|
return phaPrcaticeScopeCode;
|
}
|
|
public void setPhaRegisterDate(Date phaRegisterDate) {
|
this.phaRegisterDate = phaRegisterDate;
|
}
|
|
public Date getPhaRegisterDate() {
|
return phaRegisterDate;
|
}
|
|
public void setPhaRegisterValidDate(Date phaRegisterValidDate) {
|
this.phaRegisterValidDate = phaRegisterValidDate;
|
}
|
|
public Date getPhaRegisterValidDate() {
|
return phaRegisterValidDate;
|
}
|
|
public void setPhaRegisterAddress(String phaRegisterAddress) {
|
this.phaRegisterAddress = phaRegisterAddress;
|
}
|
|
public String getPhaRegisterAddress() {
|
return phaRegisterAddress;
|
}
|
|
public void setPhaCertifiedNo(Long phaCertifiedNo) {
|
this.phaCertifiedNo = phaCertifiedNo;
|
}
|
|
public Long getPhaCertifiedNo() {
|
return phaCertifiedNo;
|
}
|
|
public void setExpJobLevelCode(String expJobLevelCode) {
|
this.expJobLevelCode = expJobLevelCode;
|
}
|
|
public String getExpJobLevelCode() {
|
return expJobLevelCode;
|
}
|
|
public void setExpGoodArea(String expGoodArea) {
|
this.expGoodArea = expGoodArea;
|
}
|
|
public String getExpGoodArea() {
|
return expGoodArea;
|
}
|
|
public void setLocked(Long locked) {
|
this.locked = locked;
|
}
|
|
public Long getLocked() {
|
return locked;
|
}
|
|
public void setOrderNum(Long orderNum) {
|
this.orderNum = orderNum;
|
}
|
|
public Long getOrderNum() {
|
return orderNum;
|
}
|
|
public void setEffective(String effective) {
|
this.effective = effective;
|
}
|
|
public String getEffective() {
|
return effective;
|
}
|
|
public void setPoliticalStatus(String politicalStatus) {
|
this.politicalStatus = politicalStatus;
|
}
|
|
public String getPoliticalStatus() {
|
return politicalStatus;
|
}
|
|
public void setJoinpartisanDate(Date joinpartisanDate) {
|
this.joinpartisanDate = joinpartisanDate;
|
}
|
|
public Date getJoinpartisanDate() {
|
return joinpartisanDate;
|
}
|
|
public void setProQualiCertificate(String proQualiCertificate) {
|
this.proQualiCertificate = proQualiCertificate;
|
}
|
|
public String getProQualiCertificate() {
|
return proQualiCertificate;
|
}
|
|
public void setEntryDate(Date entryDate) {
|
this.entryDate = entryDate;
|
}
|
|
public Date getEntryDate() {
|
return entryDate;
|
}
|
|
public void setWhetherContract(String whetherContract) {
|
this.whetherContract = whetherContract;
|
}
|
|
public String getWhetherContract() {
|
return whetherContract;
|
}
|
|
public void setInternshIp(String internshIp) {
|
this.internshIp = internshIp;
|
}
|
|
public String getInternshIp() {
|
return internshIp;
|
}
|
|
public void setWbm(String wbm) {
|
this.wbm = wbm;
|
}
|
|
public String getWbm() {
|
return wbm;
|
}
|
|
public void setHomeTownDesc(String homeTownDesc) {
|
this.homeTownDesc = homeTownDesc;
|
}
|
|
public String getHomeTownDesc() {
|
return homeTownDesc;
|
}
|
|
public void setOpenId(Long openId) {
|
this.openId = openId;
|
}
|
|
public Long getOpenId() {
|
return openId;
|
}
|
|
public void setJobCategory(String jobCategory) {
|
this.jobCategory = jobCategory;
|
}
|
|
public String getJobCategory() {
|
return jobCategory;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("hospId", getHospId())
|
.append("hospName", getHospName())
|
.append("orgType", getOrgType())
|
.append("staffName", getStaffName())
|
.append("staffEnName", getStaffEnName())
|
.append("spell", getSpell())
|
.append("staffCode", getStaffCode())
|
.append("brithday", getBrithday())
|
.append("nationCode", getNationCode())
|
.append("nationDesc", getNationDesc())
|
.append("certificateType", getCertificateType())
|
.append("certificateNo", getCertificateNo())
|
.append("cardNo", getCardNo())
|
.append("marriageCode", getMarriageCode())
|
.append("marriageDesc", getMarriageDesc())
|
.append("homeTown", getHomeTown())
|
.append("brithAddr", getBrithAddr())
|
.append("liveAddr", getLiveAddr())
|
.append("phone", getPhone())
|
.append("officePhone", getOfficePhone())
|
.append("postCode", getPostCode())
|
.append("email", getEmail())
|
.append("kindCode", getKindCode())
|
.append("educationCode", getEducationCode())
|
.append("educationDesc", getEducationDesc())
|
.append("degreeCode", getDegreeCode())
|
.append("professionalCode", getProfessionalCode())
|
.append("postionTypeCode", getPostionTypeCode())
|
.append("positionCode", getPositionCode())
|
.append("healthStatusCode", getHealthStatusCode())
|
.append("managerPosition", getManagerPosition())
|
.append("cftitle", getCftitle())
|
.append("workDate", getWorkDate())
|
.append("drcDate", getDrcDate())
|
.append("profile", getProfile())
|
.append("stationed", getStationed())
|
.append("academician", getAcademician())
|
.append("expert", getExpert())
|
.append("allowance", getAllowance())
|
.append("nationPeople", getNationPeople())
|
.append("technologyHeadPeople", getTechnologyHeadPeople())
|
.append("responder", getResponder())
|
.append("phyPrcaticeTypeCod", getPhyPrcaticeTypeCod())
|
.append("phyPrcaticeScopeCode", getPhyPrcaticeScopeCode())
|
.append("phyQualifiedName", getPhyQualifiedName())
|
.append("phyQualifiedCertifiedNo", getPhyQualifiedCertifiedNo())
|
.append("phyPracticeCertificateNo", getPhyPracticeCertificateNo())
|
.append("phyRegisterDate", getPhyRegisterDate())
|
.append("phyRegisterValidDate", getPhyRegisterValidDate())
|
.append("phyRegisterAddress", getPhyRegisterAddress())
|
.append("formation", getFormation())
|
.append("medicalTitle", getMedicalTitle())
|
.append("medicalId", getMedicalId())
|
.append("moreHospPhy", getMoreHospPhy())
|
.append("phaPracticeCertificateCode", getPhaPracticeCertificateCode())
|
.append("phaPrcaticeTypeCode", getPhaPrcaticeTypeCode())
|
.append("phaPrcaticeScopeCode", getPhaPrcaticeScopeCode())
|
.append("phaRegisterDate", getPhaRegisterDate())
|
.append("phaRegisterValidDate", getPhaRegisterValidDate())
|
.append("phaRegisterAddress", getPhaRegisterAddress())
|
.append("phaCertifiedNo", getPhaCertifiedNo())
|
.append("expJobLevelCode", getExpJobLevelCode())
|
.append("expGoodArea", getExpGoodArea())
|
.append("locked", getLocked())
|
.append("remark", getRemark())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("orderNum", getOrderNum())
|
.append("effective", getEffective())
|
.append("politicalStatus", getPoliticalStatus())
|
.append("joinpartisanDate", getJoinpartisanDate())
|
.append("proQualiCertificate", getProQualiCertificate())
|
.append("entryDate", getEntryDate())
|
.append("whetherContract", getWhetherContract())
|
.append("internshIp", getInternshIp())
|
.append("wbm", getWbm())
|
.append("homeTownDesc", getHomeTownDesc())
|
.append("openId", getOpenId())
|
.append("jobCategory", getJobCategory())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|