package com.vci.ubcs.code.vo.webserviceModel.person;
|
|
public class OrgMasterData {
|
/**
|
* 主键
|
*/
|
private String id;
|
/**
|
* 隶属单位代码
|
*/
|
private String company_code;
|
|
/**
|
* 隶属单位名称/所属公司
|
*/
|
private String company_name;
|
|
/**
|
* 部门编码
|
*/
|
private String department_code;
|
|
/**
|
* 部门名称
|
*/
|
private String department_name;
|
|
/**
|
* 部门类型 1=普通部门,2=决策部门
|
*/
|
private String department_type;
|
|
/**
|
* 上级部门编码 所屋上级部门,引用部门主数据,集团命名“上级部门代码
|
*/
|
private String parent_department_code;
|
|
/**
|
* 上级部门名称
|
*/
|
private String parent_department_name;
|
|
/**
|
* 部门负责人
|
*/
|
private String department_head;
|
|
/***
|
* 负责人编码
|
*/
|
private String department_head_code;
|
|
/***
|
* 电话
|
*/
|
private String telephone_number;
|
|
/***
|
* 排序号
|
*/
|
private String sort_order;
|
|
/**
|
*启用状态 1=未启用,2=已启用,3e已停用
|
*/
|
private int enable_status;
|
|
/**
|
* 部门层级
|
*/
|
private String department_level;
|
|
/***
|
* 是香虚拟部门
|
*/
|
private String is_virtual;
|
|
/***
|
* 部门状态,有效、作度
|
*/
|
private String department_status;
|
|
/***
|
* 部门显示状态,显示、不显示
|
*/
|
private String display_status;
|
|
/***
|
* 部门ID路径
|
*/
|
private String id_route;
|
|
/***
|
*部门名称路径
|
*/
|
private String name_route;
|
|
/***
|
*节点类型,当前新加节点的类别,部门,企业(法人单位),默认
|
*/
|
private String node_type;
|
|
/***
|
* 部门原编码,记录该部门的原有编码,作为换号时的对解
|
*/
|
private String original_code;
|
|
/**
|
* 创建者
|
*/
|
private String creator;
|
|
/***
|
* 创建时间
|
*/
|
private String createtime;
|
|
/***
|
* 修改者
|
*/
|
private String modifier;
|
|
/**
|
* 修改时间
|
*/
|
private String modifytime;
|
|
private String mdm_parentcode;
|
|
private int mdm_workflow_status;
|
|
private String mdm_datastatus;
|
|
private String mdm_cleanstatus;
|
|
private String link_fieldvalue;
|
|
private String flow_middatastatus;
|
|
private String pk_mdm;
|
|
private String mdm_duplicate;
|
|
private String mdm_code;
|
|
private String mdm_version;
|
|
private String original_name;
|
|
private String ts;
|
|
/***
|
*0:正常,1数据被删除,默认为0;
|
*/
|
private int dr;
|
|
private String dr_ndm_code;
|
|
public String getCompany_code() {
|
return company_code;
|
}
|
|
public void setCompany_code(String company_code) {
|
this.company_code = company_code;
|
}
|
|
public String getCompany_name() {
|
return company_name;
|
}
|
|
public void setCompany_name(String company_name) {
|
this.company_name = company_name;
|
}
|
|
public String getDepartment_code() {
|
return department_code;
|
}
|
|
public void setDepartment_code(String department_code) {
|
this.department_code = department_code;
|
}
|
|
public String getDepartment_name() {
|
return department_name;
|
}
|
|
public void setDepartment_name(String department_name) {
|
this.department_name = department_name;
|
}
|
|
public String getDepartment_type() {
|
return department_type;
|
}
|
|
public void setDepartment_type(String department_type) {
|
this.department_type = department_type;
|
}
|
|
public String getParent_department_code() {
|
return parent_department_code;
|
}
|
|
public void setParent_department_code(String parent_department_code) {
|
this.parent_department_code = parent_department_code;
|
}
|
|
public String getParent_department_name() {
|
return parent_department_name;
|
}
|
|
public void setParent_department_name(String parent_department_name) {
|
this.parent_department_name = parent_department_name;
|
}
|
|
public String getDepartment_head() {
|
return department_head;
|
}
|
|
public void setDepartment_head(String department_head) {
|
this.department_head = department_head;
|
}
|
|
public String getDepartment_head_code() {
|
return department_head_code;
|
}
|
|
public void setDepartment_head_code(String department_head_code) {
|
this.department_head_code = department_head_code;
|
}
|
|
public String getTelephone_number() {
|
return telephone_number;
|
}
|
|
public void setTelephone_number(String telephone_number) {
|
this.telephone_number = telephone_number;
|
}
|
|
public String getSort_order() {
|
return sort_order;
|
}
|
|
public void setSort_order(String sort_order) {
|
this.sort_order = sort_order;
|
}
|
|
public int getEnable_status() {
|
return enable_status;
|
}
|
|
public void setEnable_status(int enable_status) {
|
this.enable_status = enable_status;
|
}
|
|
public String getDepartment_level() {
|
return department_level;
|
}
|
|
public void setDepartment_level(String department_level) {
|
this.department_level = department_level;
|
}
|
|
public String getIs_virtual() {
|
return is_virtual;
|
}
|
|
public void setIs_virtual(String is_virtual) {
|
this.is_virtual = is_virtual;
|
}
|
|
public String getDepartment_status() {
|
return department_status;
|
}
|
|
public void setDepartment_status(String department_status) {
|
this.department_status = department_status;
|
}
|
|
public String getDisplay_status() {
|
return display_status;
|
}
|
|
public void setDisplay_status(String display_status) {
|
this.display_status = display_status;
|
}
|
|
public String getId_route() {
|
return id_route;
|
}
|
|
public void setId_route(String id_route) {
|
this.id_route = id_route;
|
}
|
|
public String getName_route() {
|
return name_route;
|
}
|
|
public void setName_route(String name_route) {
|
this.name_route = name_route;
|
}
|
|
public String getNode_type() {
|
return node_type;
|
}
|
|
public void setNode_type(String node_type) {
|
this.node_type = node_type;
|
}
|
|
public String getOriginal_code() {
|
return original_code;
|
}
|
|
public void setOriginal_code(String original_code) {
|
this.original_code = original_code;
|
}
|
|
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 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 getMdm_parentcode() {
|
return mdm_parentcode;
|
}
|
|
public void setMdm_parentcode(String mdm_parentcode) {
|
this.mdm_parentcode = mdm_parentcode;
|
}
|
|
public int getMdm_workflow_status() {
|
return mdm_workflow_status;
|
}
|
|
public void setMdm_workflow_status(int mdm_workflow_status) {
|
this.mdm_workflow_status = mdm_workflow_status;
|
}
|
|
public String getMdm_datastatus() {
|
return mdm_datastatus;
|
}
|
|
public void setMdm_datastatus(String mdm_datastatus) {
|
this.mdm_datastatus = mdm_datastatus;
|
}
|
|
public String getMdm_cleanstatus() {
|
return mdm_cleanstatus;
|
}
|
|
public void setMdm_cleanstatus(String mdm_cleanstatus) {
|
this.mdm_cleanstatus = mdm_cleanstatus;
|
}
|
|
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 getPk_mdm() {
|
return pk_mdm;
|
}
|
|
public void setPk_mdm(String pk_mdn) {
|
this.pk_mdm = pk_mdn;
|
}
|
|
public String getMdm_duplicate() {
|
return mdm_duplicate;
|
}
|
|
public void setMdm_duplicate(String mdm_duplicate) {
|
this.mdm_duplicate = mdm_duplicate;
|
}
|
|
public String getMdm_code() {
|
return mdm_code;
|
}
|
|
public void setMdm_code(String mdm_code) {
|
this.mdm_code = mdm_code;
|
}
|
|
public String getMdm_version() {
|
return mdm_version;
|
}
|
|
public void setMdm_version(String mdm_version) {
|
this.mdm_version = mdm_version;
|
}
|
|
public String getOriginal_name() {
|
return original_name;
|
}
|
|
public void setOriginal_name(String original_name) {
|
this.original_name = original_name;
|
}
|
|
public String getTs() {
|
return ts;
|
}
|
|
public void setTs(String ts) {
|
this.ts = ts;
|
}
|
|
public int getDr() {
|
return dr;
|
}
|
|
public void setDr(int dr) {
|
this.dr = dr;
|
}
|
|
public String getDr_ndm_code() {
|
return dr_ndm_code;
|
}
|
|
public void setDr_ndm_code(String dr_ndm_code) {
|
this.dr_ndm_code = dr_ndm_code;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
@Override
|
public String toString() {
|
return "OrgMasterData{" +
|
"id='" + id + '\'' +
|
", company_code='" + company_code + '\'' +
|
", company_name='" + company_name + '\'' +
|
", department_code='" + department_code + '\'' +
|
", department_name='" + department_name + '\'' +
|
", department_type='" + department_type + '\'' +
|
", parent_department_code='" + parent_department_code + '\'' +
|
", parent_department_name='" + parent_department_name + '\'' +
|
", department_head='" + department_head + '\'' +
|
", department_head_code='" + department_head_code + '\'' +
|
", telephone_number='" + telephone_number + '\'' +
|
", sort_order='" + sort_order + '\'' +
|
", enable_status=" + enable_status +
|
", department_level='" + department_level + '\'' +
|
", is_virtual='" + is_virtual + '\'' +
|
", department_status='" + department_status + '\'' +
|
", display_status='" + display_status + '\'' +
|
", id_route='" + id_route + '\'' +
|
", name_route='" + name_route + '\'' +
|
", node_type='" + node_type + '\'' +
|
", original_code='" + original_code + '\'' +
|
", creator='" + creator + '\'' +
|
", createtime='" + createtime + '\'' +
|
", modifier='" + modifier + '\'' +
|
", modifytime='" + modifytime + '\'' +
|
", mdm_parentcode='" + mdm_parentcode + '\'' +
|
", mdm_workflow_status=" + mdm_workflow_status +
|
", mdm_datastatus='" + mdm_datastatus + '\'' +
|
", mdm_cleanstatus='" + mdm_cleanstatus + '\'' +
|
", link_fieldvalue='" + link_fieldvalue + '\'' +
|
", flow_middatastatus='" + flow_middatastatus + '\'' +
|
", pk_mdm='" + pk_mdm + '\'' +
|
", mdm_duplicate='" + mdm_duplicate + '\'' +
|
", mdm_code='" + mdm_code + '\'' +
|
", mdm_version='" + mdm_version + '\'' +
|
", original_name='" + original_name + '\'' +
|
", ts='" + ts + '\'' +
|
", dr=" + dr +
|
", dr_ndm_code='" + dr_ndm_code + '\'' +
|
'}';
|
}
|
}
|