| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspAllOrganizationZj
- *
- * @author lhc
- * @date 2020-7-20
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspAllOrganizationZj extends BaseBean implements Serializable {
- // 组织部门ID
- @ApiModelProperty(value="组织部门ID",name="organizationId")
- private String organizationId;
- // 父级编码
- @ApiModelProperty(value="父级编码",name="parentId")
- private String parentId;
- // 部门名称
- @ApiModelProperty(value="部门名称",name="name")
- private String name;
- // 部门名称
- @ApiModelProperty(value="部门名称",name="fullName")
- private String fullName;
- // 地址
- @ApiModelProperty(value="地址",name="address")
- private String address;
- // 组织机构代码证
- @ApiModelProperty(value="组织机构代码证",name="uncode")
- private String uncode;
- // 排序
- @ApiModelProperty(value="排序",name="orderId")
- private String orderId;
- // 部门负责人
- @ApiModelProperty(value="部门负责人",name="chargePerson")
- private String chargePerson;
- // 责任人电话号码
- @ApiModelProperty(value="责任人电话号码",name="phoneNumber")
- private String phoneNumber;
- // 责任人手机号码
- @ApiModelProperty(value="责任人手机号码",name="mobileNumber")
- private String mobileNumber;
- // 部门传真
- @ApiModelProperty(value="部门传真",name="faxNumber")
- private String faxNumber;
- // 部门电子邮箱
- @ApiModelProperty(value="部门电子邮箱",name="email")
- private String email;
- // 部门介绍
- @ApiModelProperty(value="部门介绍",name="intruduction")
- private String intruduction;
- // 在岗职工数
- @ApiModelProperty(value="在岗职工数",name="staffCount")
- private String staffCount;
- // 所在单位编号
- @ApiModelProperty(value="所在单位编号",name="unitid")
- private String unitid;
- // 组织机构类别
- @ApiModelProperty(value="组织机构类别",name="typeCode")
- private String typeCode;
- // 行政区划码
- @ApiModelProperty(value="行政区划码",name="adcd")
- private String adcd;
- // 行政区划名称
- @ApiModelProperty(value="行政区划名称",name="adName")
- private String adName;
- // 机构关联
- @ApiModelProperty(value="机构关联",name="orgRelated")
- private String orgRelated;
- public BisInspAllOrganizationZj() {
- }
- public String getOrganizationId() {
- return organizationId;
- }
- public void setOrganizationId(String organizationId) {
- this.organizationId = organizationId;
- }
- public String getParentId() {
- return parentId;
- }
- public void setParentId(String parentId) {
- this.parentId = parentId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getFullName() {
- return fullName;
- }
- public void setFullName(String fullName) {
- this.fullName = fullName;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getUncode() {
- return uncode;
- }
- public void setUncode(String uncode) {
- this.uncode = uncode;
- }
- public String getOrderId() {
- return orderId;
- }
- public void setOrderId(String orderId) {
- this.orderId = orderId;
- }
- public String getChargePerson() {
- return chargePerson;
- }
- public void setChargePerson(String chargePerson) {
- this.chargePerson = chargePerson;
- }
- public String getPhoneNumber() {
- return phoneNumber;
- }
- public void setPhoneNumber(String phoneNumber) {
- this.phoneNumber = phoneNumber;
- }
- public String getMobileNumber() {
- return mobileNumber;
- }
- public void setMobileNumber(String mobileNumber) {
- this.mobileNumber = mobileNumber;
- }
- public String getFaxNumber() {
- return faxNumber;
- }
- public void setFaxNumber(String faxNumber) {
- this.faxNumber = faxNumber;
- }
- public String getEmail() {
- return email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public String getIntruduction() {
- return intruduction;
- }
- public void setIntruduction(String intruduction) {
- this.intruduction = intruduction;
- }
- public String getStaffCount() {
- return staffCount;
- }
- public void setStaffCount(String staffCount) {
- this.staffCount = staffCount;
- }
- public String getUnitid() {
- return unitid;
- }
- public void setUnitid(String unitid) {
- this.unitid = unitid;
- }
- public String getTypeCode() {
- return typeCode;
- }
- public void setTypeCode(String typeCode) {
- this.typeCode = typeCode;
- }
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getOrgRelated() {
- return orgRelated;
- }
- public void setOrgRelated(String orgRelated) {
- this.orgRelated = orgRelated;
- }
- @Override
- public String toString() {
- return "BisInspAllOrganizationZj [" + "organizationId=" + organizationId + ", parentId=" + parentId + ", name=" + name + ", fullName=" + fullName + ", address=" + address + ", uncode=" + uncode + ", orderId=" + orderId + ", chargePerson=" + chargePerson + ", phoneNumber=" + phoneNumber + ", mobileNumber=" + mobileNumber + ", faxNumber=" + faxNumber + ", email=" + email + ", intruduction=" + intruduction + ", staffCount=" + staffCount + ", unitid=" + unitid + ", typeCode=" + typeCode + ", adcd=" + adcd + ", adName=" + adName + ", orgRelated=" + orgRelated + "]";
- }
- }
|