package com.vci.ubcs.code.vo.webserviceModel.person;
|
|
public class PersonMasterData {
|
|
/***
|
* 数据在此系统中唯一标识
|
*/
|
private String id;
|
|
/***
|
* 员工编码(企业编码)
|
*/
|
private String lm_code;
|
|
/**
|
* 集团员工编号
|
*/
|
private String group_code;
|
|
/***
|
* 员工姓名
|
*/
|
private String name;
|
|
/**
|
* 主数据编码
|
*/
|
private String mdm_code;
|
|
/***
|
*0:正常,1数据被删除,默认为0;
|
*/
|
private int dr;
|
|
/***
|
* 行政区域化
|
*/
|
private String admin_division;
|
|
/***
|
* 行政区域化号码
|
*/
|
private String admin_division_code;
|
|
/**
|
* 出生日期(yyyy-MM-dd)
|
*/
|
private String birthday;
|
|
/**
|
* 出生地
|
*/
|
private String birthplace;
|
|
/***
|
* 籍贯
|
*/
|
private String citizenship;
|
|
/**
|
* 国家/地区
|
*/
|
private String country;
|
|
/***
|
* 部门
|
*/
|
private String dept_type;
|
|
/***
|
* 部门名称
|
*/
|
private String dept_name;
|
|
/***
|
* 学历
|
*/
|
private String education;
|
|
/***
|
* 任职单位编码
|
*/
|
private String employer_code;
|
|
/***
|
* 用工形式
|
*/
|
private String employment_form;
|
|
/**
|
* 身份证编号
|
*/
|
private String id_number;
|
|
/***
|
* 证件类型
|
*/
|
private String id_type;
|
|
/***
|
* 是否主职
|
*/
|
private String is_keyposion;
|
|
/**
|
* 婚姻状况
|
*/
|
private String marital_status;
|
|
/**
|
* 手机号码
|
*/
|
private String mobile_phone;
|
|
/***
|
* 民族
|
*/
|
private String nationality;
|
|
/**
|
* 办公电话
|
*/
|
private String office_telephone;
|
|
/***
|
*外网邮箱
|
*/
|
private String outer_email;
|
|
/***
|
*上级门编码
|
*/
|
private String parent_dept_code;
|
|
/***
|
*上级门名称
|
*/
|
private String parent_dept_name;
|
|
/***
|
*政治面貌
|
*/
|
private String politiccountenance;
|
|
/***
|
* 岗位
|
*/
|
private String position;
|
|
/***
|
* 职称
|
*/
|
private String work_title;
|
|
/***
|
* 人员类别
|
*/
|
private String worker_category;
|
|
/**
|
* 人员类别编码
|
*/
|
private String worker_category_code;
|
|
/***
|
* 职务
|
*/
|
private String worker_duty;
|
|
/***
|
* 工作邮箱
|
*/
|
private String worker_email;
|
|
/***
|
* 职级
|
*/
|
private String worker_level;
|
|
/***
|
* 职级编码
|
*/
|
private String worker_level_code;
|
|
/**
|
* 国密等级编码
|
*/
|
private String country_level_code;
|
|
/**
|
* 国密等级名称
|
*/
|
private String country_level_name;
|
|
/**
|
* 商密等级编码
|
*/
|
private String business_level_code;
|
|
/**
|
* 商密等级名称
|
*/
|
private String business_level_name;
|
|
/***
|
* 人员密级
|
*/
|
private String worker_security_level;
|
|
/***
|
* 流程状态
|
*/
|
private int mdm_workflow;
|
|
/***
|
* 修改者
|
*/
|
private String modifier;
|
|
/***
|
* 修改时间
|
*/
|
private String modifytime;
|
|
/***
|
* 创建者
|
*/
|
private String creator;
|
|
/***
|
* 创建时间
|
*/
|
private String createtime;
|
|
/**
|
* 数据状态
|
*/
|
private int mdm_datastatus;
|
|
private String link_fieldvalue;
|
|
private String flow_middatastatus;
|
|
private String employer;
|
|
private int mdm_duplicate;
|
|
private EnumerableData gender_entity;
|
|
private EnumerableData employment_type_entity;
|
|
private String gender;
|
|
private String employment_type;
|
|
private String employment_type_nane;
|
|
private String mdm_cleanstatus;
|
|
private String mdm_parentcode;
|
|
private String mdm_yersion;
|
|
private String dr_mdm_code;
|
|
private String pk_mdm;
|
|
private String gender_name;
|
|
private String ts;
|
|
|
private String graduatecolleges;
|
private String is_on_duty;
|
private String is_on_job;
|
private String leibie;
|
private String major;
|
private String position_code;
|
|
private String post_state_code;
|
private String post_state_name;
|
private String sort_num;
|
private String worktime;
|
|
private String workyear;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getLm_code() {
|
return lm_code;
|
}
|
|
public void setLm_code(String lm_code) {
|
this.lm_code = lm_code;
|
}
|
|
public String getGroup_code() {
|
return group_code;
|
}
|
|
public void setGroup_code(String group_code) {
|
this.group_code = group_code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getMdm_code() {
|
return mdm_code;
|
}
|
|
public void setMdm_code(String mdm_code) {
|
this.mdm_code = mdm_code;
|
}
|
|
public int getDr() {
|
return dr;
|
}
|
|
public void setDr(int dr) {
|
this.dr = dr;
|
}
|
|
public String getAdmin_division() {
|
return admin_division;
|
}
|
|
public void setAdmin_division(String admin_division) {
|
this.admin_division = admin_division;
|
}
|
|
public String getAdmin_division_code() {
|
return admin_division_code;
|
}
|
|
public void setAdmin_division_code(String admin_division_code) {
|
this.admin_division_code = admin_division_code;
|
}
|
|
public String getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(String birthday) {
|
this.birthday = birthday;
|
}
|
|
public String getBirthplace() {
|
return birthplace;
|
}
|
|
public void setBirthplace(String birthplace) {
|
this.birthplace = birthplace;
|
}
|
|
public String getCitizenship() {
|
return citizenship;
|
}
|
|
public void setCitizenship(String citizenship) {
|
this.citizenship = citizenship;
|
}
|
|
public String getWorker_category_code() {
|
return worker_category_code;
|
}
|
|
public String getWorker_level_code() {
|
return worker_level_code;
|
}
|
|
public String getCountry_level_code() {
|
return country_level_code;
|
}
|
|
public String getCountry_level_name() {
|
return country_level_name;
|
}
|
|
public String getBusiness_level_code() {
|
return business_level_code;
|
}
|
|
public String getBusiness_level_name() {
|
return business_level_name;
|
}
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country;
|
}
|
|
public void setWorker_category_code(String worker_category_code) {
|
this.worker_category_code = worker_category_code;
|
}
|
|
public void setWorker_level_code(String worker_level_code) {
|
this.worker_level_code = worker_level_code;
|
}
|
|
public void setCountry_level_code(String country_level_code) {
|
this.country_level_code = country_level_code;
|
}
|
|
public void setCountry_level_name(String country_level_name) {
|
this.country_level_name = country_level_name;
|
}
|
|
public void setBusiness_level_code(String business_level_code) {
|
this.business_level_code = business_level_code;
|
}
|
|
public void setBusiness_level_name(String business_level_name) {
|
this.business_level_name = business_level_name;
|
}
|
|
public String getDept_type() {
|
return dept_type;
|
}
|
|
public void setDept_type(String dept_type) {
|
this.dept_type = dept_type;
|
}
|
|
public String getDept_name() {
|
return dept_name;
|
}
|
|
public void setDept_name(String dept_name) {
|
this.dept_name = dept_name;
|
}
|
|
public String getEducation() {
|
return education;
|
}
|
|
public void setEducation(String education) {
|
this.education = education;
|
}
|
|
public String getEmployer_code() {
|
return employer_code;
|
}
|
|
public void setEmployer_code(String employer_code) {
|
this.employer_code = employer_code;
|
}
|
|
public String getEmployment_form() {
|
return employment_form;
|
}
|
|
public void setEmployment_form(String employment_form) {
|
this.employment_form = employment_form;
|
}
|
|
public String getId_number() {
|
return id_number;
|
}
|
|
public void setId_number(String id_number) {
|
this.id_number = id_number;
|
}
|
|
public String getId_type() {
|
return id_type;
|
}
|
|
public void setId_type(String id_type) {
|
this.id_type = id_type;
|
}
|
|
public String getIs_keyposion() {
|
return is_keyposion;
|
}
|
|
public void setIs_keyposion(String is_keyposion) {
|
this.is_keyposion = is_keyposion;
|
}
|
|
public String getMarital_status() {
|
return marital_status;
|
}
|
|
public void setMarital_status(String marital_status) {
|
this.marital_status = marital_status;
|
}
|
|
public String getMobile_phone() {
|
return mobile_phone;
|
}
|
|
public void setMobile_phone(String mobile_phone) {
|
this.mobile_phone = mobile_phone;
|
}
|
|
public String getNationality() {
|
return nationality;
|
}
|
|
public void setNationality(String nationality) {
|
this.nationality = nationality;
|
}
|
|
public String getOffice_telephone() {
|
return office_telephone;
|
}
|
|
public void setOffice_telephone(String office_telephone) {
|
this.office_telephone = office_telephone;
|
}
|
|
public String getOuter_email() {
|
return outer_email;
|
}
|
|
public void setOuter_email(String outer_email) {
|
this.outer_email = outer_email;
|
}
|
|
public String getParent_dept_code() {
|
return parent_dept_code;
|
}
|
|
public void setParent_dept_code(String parent_dept_code) {
|
this.parent_dept_code = parent_dept_code;
|
}
|
|
public String getParent_dept_name() {
|
return parent_dept_name;
|
}
|
|
public void setParent_dept_name(String parent_dept_name) {
|
this.parent_dept_name = parent_dept_name;
|
}
|
|
public String getPoliticcountenance() {
|
return politiccountenance;
|
}
|
|
public void setPoliticcountenance(String politiccountenance) {
|
this.politiccountenance = politiccountenance;
|
}
|
|
public String getPosition() {
|
return position;
|
}
|
|
public void setPosition(String position) {
|
this.position = position;
|
}
|
|
public String getWork_title() {
|
return work_title;
|
}
|
|
public void setWork_title(String work_title) {
|
this.work_title = work_title;
|
}
|
|
public String getWorker_category() {
|
return worker_category;
|
}
|
|
public void setWorker_category(String worker_category) {
|
this.worker_category = worker_category;
|
}
|
|
public String getWorker_duty() {
|
return worker_duty;
|
}
|
|
public void setWorker_duty(String worker_duty) {
|
this.worker_duty = worker_duty;
|
}
|
|
public String getWorker_email() {
|
return worker_email;
|
}
|
|
public void setWorker_email(String worker_email) {
|
this.worker_email = worker_email;
|
}
|
|
public String getWorker_level() {
|
return worker_level;
|
}
|
|
public void setWorker_level(String worker_level) {
|
this.worker_level = worker_level;
|
}
|
|
public String getWorker_security_level() {
|
return worker_security_level;
|
}
|
|
public void setWorker_security_level(String worker_security_level) {
|
this.worker_security_level = worker_security_level;
|
}
|
|
public int getMdm_workflow() {
|
return mdm_workflow;
|
}
|
|
public void setMdm_workflow(int mdm_workflow) {
|
this.mdm_workflow = mdm_workflow;
|
}
|
|
public String getModifier() {
|
return modifier;
|
}
|
|
public void setModifier(String modifier) {
|
this.modifier = modifier;
|
}
|
|
public String getModifytime() {
|
return modifytime;
|
}
|
|
public void setModifytime(String modifytime) {
|
this.modifytime = modifytime;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public int getMdm_datastatus() {
|
return mdm_datastatus;
|
}
|
|
public void setMdm_datastatus(int mdm_datastatus) {
|
this.mdm_datastatus = mdm_datastatus;
|
}
|
|
public String getLink_fieldvalue() {
|
return link_fieldvalue;
|
}
|
|
public void setLink_fieldvalue(String link_fieldvalue) {
|
this.link_fieldvalue = link_fieldvalue;
|
}
|
|
public String getFlow_middatastatus() {
|
return flow_middatastatus;
|
}
|
|
public void setFlow_middatastatus(String flow_middatastatus) {
|
this.flow_middatastatus = flow_middatastatus;
|
}
|
|
public String getEmployer() {
|
return employer;
|
}
|
|
public void setEmployer(String employer) {
|
this.employer = employer;
|
}
|
|
public int getMdm_duplicate() {
|
return mdm_duplicate;
|
}
|
|
public void setMdm_duplicate(int mdm_duplicate) {
|
this.mdm_duplicate = mdm_duplicate;
|
}
|
|
public EnumerableData getGender_entity() {
|
return gender_entity;
|
}
|
|
public void setGender_entity(EnumerableData gender_entity) {
|
this.gender_entity = gender_entity;
|
}
|
|
public EnumerableData getEmployment_type_entity() {
|
return employment_type_entity;
|
}
|
|
public void setEmployment_type_entity(EnumerableData employment_type_entity) {
|
this.employment_type_entity = employment_type_entity;
|
}
|
|
public String getGender() {
|
return gender;
|
}
|
|
public void setGender(String gender) {
|
this.gender = gender;
|
}
|
|
public String getEmployment_type() {
|
return employment_type;
|
}
|
|
public void setEmployment_type(String employment_type) {
|
this.employment_type = employment_type;
|
}
|
|
public String getEmployment_type_nane() {
|
return employment_type_nane;
|
}
|
|
public void setEmployment_type_nane(String employment_type_nane) {
|
this.employment_type_nane = employment_type_nane;
|
}
|
|
public String getMdm_cleanstatus() {
|
return mdm_cleanstatus;
|
}
|
|
public void setMdm_cleanstatus(String mdm_cleanstatus) {
|
this.mdm_cleanstatus = mdm_cleanstatus;
|
}
|
|
public String getMdm_parentcode() {
|
return mdm_parentcode;
|
}
|
|
public void setMdm_parentcode(String mdm_parentcode) {
|
this.mdm_parentcode = mdm_parentcode;
|
}
|
|
public String getMdm_yersion() {
|
return mdm_yersion;
|
}
|
|
public void setMdm_yersion(String mdm_yersion) {
|
this.mdm_yersion = mdm_yersion;
|
}
|
|
public String getDr_mdm_code() {
|
return dr_mdm_code;
|
}
|
|
public void setDr_mdm_code(String dr_mdm_code) {
|
this.dr_mdm_code = dr_mdm_code;
|
}
|
|
public String getPk_mdm() {
|
return pk_mdm;
|
}
|
|
public void setPk_mdm(String pk_mdm) {
|
this.pk_mdm = pk_mdm;
|
}
|
|
public String getGender_name() {
|
return gender_name;
|
}
|
|
public void setGender_name(String gender_name) {
|
this.gender_name = gender_name;
|
}
|
|
public String getTs() {
|
return ts;
|
}
|
|
public void setTs(String ts) {
|
this.ts = ts;
|
}
|
|
public String getGraduatecolleges() {
|
return graduatecolleges;
|
}
|
|
public void setGraduatecolleges(String graduatecolleges) {
|
this.graduatecolleges = graduatecolleges;
|
}
|
|
public String getIs_on_duty() {
|
return is_on_duty;
|
}
|
|
public void setIs_on_duty(String is_on_duty) {
|
this.is_on_duty = is_on_duty;
|
}
|
|
public String getIs_on_job() {
|
return is_on_job;
|
}
|
|
public void setIs_on_job(String is_on_job) {
|
this.is_on_job = is_on_job;
|
}
|
|
public String getLeibie() {
|
return leibie;
|
}
|
|
public void setLeibie(String leibie) {
|
this.leibie = leibie;
|
}
|
|
public String getMajor() {
|
return major;
|
}
|
|
public void setMajor(String major) {
|
this.major = major;
|
}
|
|
public String getPosition_code() {
|
return position_code;
|
}
|
|
public void setPosition_code(String position_code) {
|
this.position_code = position_code;
|
}
|
|
public String getPost_state_code() {
|
return post_state_code;
|
}
|
|
public void setPost_state_code(String post_state_code) {
|
this.post_state_code = post_state_code;
|
}
|
|
public String getPost_state_name() {
|
return post_state_name;
|
}
|
|
public void setPost_state_name(String post_state_name) {
|
this.post_state_name = post_state_name;
|
}
|
|
public String getSort_num() {
|
return sort_num;
|
}
|
|
public void setSort_num(String sort_num) {
|
this.sort_num = sort_num;
|
}
|
|
public String getWorktime() {
|
return worktime;
|
}
|
|
public void setWorktime(String worktime) {
|
this.worktime = worktime;
|
}
|
|
public String getWorkyear() {
|
return workyear;
|
}
|
|
public void setWorkyear(String workyear) {
|
this.workyear = workyear;
|
}
|
|
@Override
|
public String toString() {
|
return "PersonMasterData{" +
|
"id='" + id + '\'' +
|
", lm_code='" + lm_code + '\'' +
|
", group_code='" + group_code + '\'' +
|
", name='" + name + '\'' +
|
", mdm_code='" + mdm_code + '\'' +
|
", dr=" + dr +
|
", admin_division='" + admin_division + '\'' +
|
", admin_division_code='" + admin_division_code + '\'' +
|
", birthday='" + birthday + '\'' +
|
", birthplace='" + birthplace + '\'' +
|
", citizenship='" + citizenship + '\'' +
|
", country='" + country + '\'' +
|
", dept_type='" + dept_type + '\'' +
|
", dept_name='" + dept_name + '\'' +
|
", education='" + education + '\'' +
|
", employer_code='" + employer_code + '\'' +
|
", employment_form='" + employment_form + '\'' +
|
", id_number='" + id_number + '\'' +
|
", id_type='" + id_type + '\'' +
|
", is_keyposion='" + is_keyposion + '\'' +
|
", marital_status='" + marital_status + '\'' +
|
", mobile_phone='" + mobile_phone + '\'' +
|
", nationality='" + nationality + '\'' +
|
", office_telephone='" + office_telephone + '\'' +
|
", outer_email='" + outer_email + '\'' +
|
", parent_dept_code='" + parent_dept_code + '\'' +
|
", parent_dept_name='" + parent_dept_name + '\'' +
|
", politiccountenance='" + politiccountenance + '\'' +
|
", position='" + position + '\'' +
|
", work_title='" + work_title + '\'' +
|
", worker_category='" + worker_category + '\'' +
|
", worker_category_code='" + worker_category_code + '\'' +
|
", worker_duty='" + worker_duty + '\'' +
|
", worker_email='" + worker_email + '\'' +
|
", worker_level='" + worker_level + '\'' +
|
", worker_level_code='" + worker_level_code + '\'' +
|
", country_level_code='" + country_level_code + '\'' +
|
", country_level_name='" + country_level_name + '\'' +
|
", business_level_code='" + business_level_code + '\'' +
|
", business_level_name='" + business_level_name + '\'' +
|
", worker_security_level='" + worker_security_level + '\'' +
|
", mdm_workflow=" + mdm_workflow +
|
", modifier='" + modifier + '\'' +
|
", modifytime='" + modifytime + '\'' +
|
", creator='" + creator + '\'' +
|
", createtime='" + createtime + '\'' +
|
", mdm_datastatus=" + mdm_datastatus +
|
", link_fieldvalue='" + link_fieldvalue + '\'' +
|
", flow_middatastatus='" + flow_middatastatus + '\'' +
|
", employer='" + employer + '\'' +
|
", mdm_duplicate=" + mdm_duplicate +
|
", gender_entity=" + gender_entity +
|
", employment_type_entity=" + employment_type_entity +
|
", gender='" + gender + '\'' +
|
", employment_type='" + employment_type + '\'' +
|
", employment_type_nane='" + employment_type_nane + '\'' +
|
", mdm_cleanstatus='" + mdm_cleanstatus + '\'' +
|
", mdm_parentcode='" + mdm_parentcode + '\'' +
|
", mdm_yersion='" + mdm_yersion + '\'' +
|
", dr_mdm_code='" + dr_mdm_code + '\'' +
|
", pk_mdm='" + pk_mdm + '\'' +
|
", gender_name='" + gender_name + '\'' +
|
", ts='" + ts + '\'' +
|
", graduatecolleges='" + graduatecolleges + '\'' +
|
", is_on_duty='" + is_on_duty + '\'' +
|
", is_on_job='" + is_on_job + '\'' +
|
", leibie='" + leibie + '\'' +
|
", major='" + major + '\'' +
|
", position_code='" + position_code + '\'' +
|
", post_state_code='" + post_state_code + '\'' +
|
", post_state_name='" + post_state_name + '\'' +
|
", sort_num='" + sort_num + '\'' +
|
", worktime='" + worktime + '\'' +
|
", workyear='" + workyear + '\'' +
|
'}';
|
}
|
|
}
|