248f7b90d11efae30a516041d90f82b493f77e52.svn-base 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:BisInspAllOrganizationZj
  8. *
  9. * @author lhc
  10. * @date 2020-7-20
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class BisInspAllOrganizationZj extends BaseBean implements Serializable {
  14. // 组织部门ID
  15. @ApiModelProperty(value="组织部门ID",name="organizationId")
  16. private String organizationId;
  17. // 父级编码
  18. @ApiModelProperty(value="父级编码",name="parentId")
  19. private String parentId;
  20. // 部门名称
  21. @ApiModelProperty(value="部门名称",name="name")
  22. private String name;
  23. // 部门名称
  24. @ApiModelProperty(value="部门名称",name="fullName")
  25. private String fullName;
  26. // 地址
  27. @ApiModelProperty(value="地址",name="address")
  28. private String address;
  29. // 组织机构代码证
  30. @ApiModelProperty(value="组织机构代码证",name="uncode")
  31. private String uncode;
  32. // 排序
  33. @ApiModelProperty(value="排序",name="orderId")
  34. private String orderId;
  35. // 部门负责人
  36. @ApiModelProperty(value="部门负责人",name="chargePerson")
  37. private String chargePerson;
  38. // 责任人电话号码
  39. @ApiModelProperty(value="责任人电话号码",name="phoneNumber")
  40. private String phoneNumber;
  41. // 责任人手机号码
  42. @ApiModelProperty(value="责任人手机号码",name="mobileNumber")
  43. private String mobileNumber;
  44. // 部门传真
  45. @ApiModelProperty(value="部门传真",name="faxNumber")
  46. private String faxNumber;
  47. // 部门电子邮箱
  48. @ApiModelProperty(value="部门电子邮箱",name="email")
  49. private String email;
  50. // 部门介绍
  51. @ApiModelProperty(value="部门介绍",name="intruduction")
  52. private String intruduction;
  53. // 在岗职工数
  54. @ApiModelProperty(value="在岗职工数",name="staffCount")
  55. private String staffCount;
  56. // 所在单位编号
  57. @ApiModelProperty(value="所在单位编号",name="unitid")
  58. private String unitid;
  59. // 组织机构类别
  60. @ApiModelProperty(value="组织机构类别",name="typeCode")
  61. private String typeCode;
  62. // 行政区划码
  63. @ApiModelProperty(value="行政区划码",name="adcd")
  64. private String adcd;
  65. // 行政区划名称
  66. @ApiModelProperty(value="行政区划名称",name="adName")
  67. private String adName;
  68. // 机构关联
  69. @ApiModelProperty(value="机构关联",name="orgRelated")
  70. private String orgRelated;
  71. public BisInspAllOrganizationZj() {
  72. }
  73. public String getOrganizationId() {
  74. return organizationId;
  75. }
  76. public void setOrganizationId(String organizationId) {
  77. this.organizationId = organizationId;
  78. }
  79. public String getParentId() {
  80. return parentId;
  81. }
  82. public void setParentId(String parentId) {
  83. this.parentId = parentId;
  84. }
  85. public String getName() {
  86. return name;
  87. }
  88. public void setName(String name) {
  89. this.name = name;
  90. }
  91. public String getFullName() {
  92. return fullName;
  93. }
  94. public void setFullName(String fullName) {
  95. this.fullName = fullName;
  96. }
  97. public String getAddress() {
  98. return address;
  99. }
  100. public void setAddress(String address) {
  101. this.address = address;
  102. }
  103. public String getUncode() {
  104. return uncode;
  105. }
  106. public void setUncode(String uncode) {
  107. this.uncode = uncode;
  108. }
  109. public String getOrderId() {
  110. return orderId;
  111. }
  112. public void setOrderId(String orderId) {
  113. this.orderId = orderId;
  114. }
  115. public String getChargePerson() {
  116. return chargePerson;
  117. }
  118. public void setChargePerson(String chargePerson) {
  119. this.chargePerson = chargePerson;
  120. }
  121. public String getPhoneNumber() {
  122. return phoneNumber;
  123. }
  124. public void setPhoneNumber(String phoneNumber) {
  125. this.phoneNumber = phoneNumber;
  126. }
  127. public String getMobileNumber() {
  128. return mobileNumber;
  129. }
  130. public void setMobileNumber(String mobileNumber) {
  131. this.mobileNumber = mobileNumber;
  132. }
  133. public String getFaxNumber() {
  134. return faxNumber;
  135. }
  136. public void setFaxNumber(String faxNumber) {
  137. this.faxNumber = faxNumber;
  138. }
  139. public String getEmail() {
  140. return email;
  141. }
  142. public void setEmail(String email) {
  143. this.email = email;
  144. }
  145. public String getIntruduction() {
  146. return intruduction;
  147. }
  148. public void setIntruduction(String intruduction) {
  149. this.intruduction = intruduction;
  150. }
  151. public String getStaffCount() {
  152. return staffCount;
  153. }
  154. public void setStaffCount(String staffCount) {
  155. this.staffCount = staffCount;
  156. }
  157. public String getUnitid() {
  158. return unitid;
  159. }
  160. public void setUnitid(String unitid) {
  161. this.unitid = unitid;
  162. }
  163. public String getTypeCode() {
  164. return typeCode;
  165. }
  166. public void setTypeCode(String typeCode) {
  167. this.typeCode = typeCode;
  168. }
  169. public String getAdcd() {
  170. return adcd;
  171. }
  172. public void setAdcd(String adcd) {
  173. this.adcd = adcd;
  174. }
  175. public String getAdName() {
  176. return adName;
  177. }
  178. public void setAdName(String adName) {
  179. this.adName = adName;
  180. }
  181. public String getOrgRelated() {
  182. return orgRelated;
  183. }
  184. public void setOrgRelated(String orgRelated) {
  185. this.orgRelated = orgRelated;
  186. }
  187. @Override
  188. public String toString() {
  189. 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 + "]";
  190. }
  191. }