aa2da208d3a583ac8f4489e82a7b3b7ded79e1c7.svn-base 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspChmclsUseunitwk
  9. *
  10. * @author lhc
  11. * @date 2021-5-13
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspChmclsUseunitwk extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 登记表ID
  19. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  20. private String rgstrId;
  21. // 单位名称
  22. @ApiModelProperty(value = "单位名称", name = "depName")
  23. private String depName;
  24. // 所在地行政区编码
  25. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  26. private String adCode;
  27. // 所在地行政区
  28. @ApiModelProperty(value = "所在地行政区", name = "adName")
  29. private String adName;
  30. @ApiModelProperty(value = "所在地行政区", name = "adFullName")
  31. private String adFullName;
  32. @ApiModelProperty(value = "地址", name = "loc")
  33. private String loc;
  34. // 联系人
  35. @ApiModelProperty(value = "联系人", name = "depPers")
  36. private String depPers;
  37. // 联系电话
  38. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  39. private String depPersTel;
  40. // 单位负责人
  41. @ApiModelProperty(value = "单位负责人", name = "utLead")
  42. private String utLead;
  43. // 负责人电话
  44. @ApiModelProperty(value = "负责人电话", name = "principalTel")
  45. private String principalTel;
  46. // 是否建立健全危化品使用档案
  47. @ApiModelProperty(value = "是否建立健全危化品使用档案", name = "isBuldAch")
  48. private String isBuldAch;
  49. // 是否在危化品使用专项治理信息系统注册
  50. @ApiModelProperty(value = "是否在危化品使用专项治理信息系统注册", name = "isRegSys")
  51. private String isRegSys;
  52. // 是否正确填报危化品使用信息
  53. @ApiModelProperty(value = "是否正确填报危化品使用信息", name = "isDngInfo")
  54. private String isDngInfo;
  55. // 是否辨识安全风险并采取有效管控措施
  56. @ApiModelProperty(value = "是否辨识安全风险并采取有效管控措施", name = "isSafMsu")
  57. private String isSafMsu;
  58. // 是否组织开展危化品使用环节隐患排查治理
  59. @ApiModelProperty(value = "是否组织开展危化品使用环节隐患排查治理", name = "isUsrGvm")
  60. private String isUsrGvm;
  61. // 记录人员ID
  62. @ApiModelProperty(value = "记录人员ID", name = "persId")
  63. private String persId;
  64. // 创建时间
  65. @ApiModelProperty(value = "创建时间", name = "intm")
  66. private Date intm;
  67. // 最后修改时间
  68. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  69. private Date uptm;
  70. // 备注
  71. @ApiModelProperty(value = "备注", name = "note")
  72. private String note;
  73. // 数据状态(0:正常;9:删除)
  74. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  75. private String dataStat;
  76. // 督查状态(0:未督查;1:督查中;2:已督查)
  77. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state")
  78. private String state;
  79. public BisInspChmclsUseunitwk() {
  80. }
  81. public String getAdFullName() {
  82. return adFullName;
  83. }
  84. public void setAdFullName(String adFullName) {
  85. this.adFullName = adFullName;
  86. }
  87. public String getLoc() {
  88. return loc;
  89. }
  90. public void setLoc(String loc) {
  91. this.loc = loc;
  92. }
  93. public String getId() {
  94. return id;
  95. }
  96. public void setId(String id) {
  97. this.id = id;
  98. }
  99. public String getRgstrId() {
  100. return rgstrId;
  101. }
  102. public void setRgstrId(String rgstrId) {
  103. this.rgstrId = rgstrId;
  104. }
  105. public String getDepName() {
  106. return depName;
  107. }
  108. public void setDepName(String depName) {
  109. this.depName = depName;
  110. }
  111. public String getAdCode() {
  112. return adCode;
  113. }
  114. public void setAdCode(String adCode) {
  115. this.adCode = adCode;
  116. }
  117. public String getAdName() {
  118. return adName;
  119. }
  120. public void setAdName(String adName) {
  121. this.adName = adName;
  122. }
  123. public String getDepPers() {
  124. return depPers;
  125. }
  126. public void setDepPers(String depPers) {
  127. this.depPers = depPers;
  128. }
  129. public String getDepPersTel() {
  130. return depPersTel;
  131. }
  132. public void setDepPersTel(String depPersTel) {
  133. this.depPersTel = depPersTel;
  134. }
  135. public String getUtLead() {
  136. return utLead;
  137. }
  138. public void setUtLead(String utLead) {
  139. this.utLead = utLead;
  140. }
  141. public String getPrincipalTel() {
  142. return principalTel;
  143. }
  144. public void setPrincipalTel(String principalTel) {
  145. this.principalTel = principalTel;
  146. }
  147. public String getIsBuldAch() {
  148. return isBuldAch;
  149. }
  150. public void setIsBuldAch(String isBuldAch) {
  151. this.isBuldAch = isBuldAch;
  152. }
  153. public String getIsRegSys() {
  154. return isRegSys;
  155. }
  156. public void setIsRegSys(String isRegSys) {
  157. this.isRegSys = isRegSys;
  158. }
  159. public String getIsDngInfo() {
  160. return isDngInfo;
  161. }
  162. public void setIsDngInfo(String isDngInfo) {
  163. this.isDngInfo = isDngInfo;
  164. }
  165. public String getIsSafMsu() {
  166. return isSafMsu;
  167. }
  168. public void setIsSafMsu(String isSafMsu) {
  169. this.isSafMsu = isSafMsu;
  170. }
  171. public String getIsUsrGvm() {
  172. return isUsrGvm;
  173. }
  174. public void setIsUsrGvm(String isUsrGvm) {
  175. this.isUsrGvm = isUsrGvm;
  176. }
  177. public String getPersId() {
  178. return persId;
  179. }
  180. public void setPersId(String persId) {
  181. this.persId = persId;
  182. }
  183. public Date getIntm() {
  184. return intm;
  185. }
  186. public void setIntm(Date intm) {
  187. this.intm = intm;
  188. }
  189. public Date getUptm() {
  190. return uptm;
  191. }
  192. public void setUptm(Date uptm) {
  193. this.uptm = uptm;
  194. }
  195. public String getNote() {
  196. return note;
  197. }
  198. public void setNote(String note) {
  199. this.note = note;
  200. }
  201. public String getDataStat() {
  202. return dataStat;
  203. }
  204. public void setDataStat(String dataStat) {
  205. this.dataStat = dataStat;
  206. }
  207. public String getState() {
  208. return state;
  209. }
  210. public void setState(String state) {
  211. this.state = state;
  212. }
  213. @Override
  214. public String toString() {
  215. return "BisInspChmclsUseunitwk [" + "id=" + id + ", rgstrId=" + rgstrId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", utLead=" + utLead + ", principalTel=" + principalTel + ", isBuldAch=" + isBuldAch + ", isRegSys=" + isRegSys + ", isDngInfo=" + isDngInfo + ", isSafMsu=" + isSafMsu + ", isUsrGvm=" + isUsrGvm + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + ", state=" + state + "]";
  216. }
  217. }