d9d540a863f32fb78a82b2cb17a9f11a666abc0a.svn-base 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import cn.com.goldenwater.dcproj.annotation.ExcelImport;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. import io.swagger.annotations.ApiModelProperty;
  8. /**
  9. * entity:BisInspAccunt
  10. *
  11. * @author lhc
  12. * @date 2022-3-17
  13. */
  14. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  15. public class BisInspAccunt extends BaseBean implements Serializable {
  16. // 主键ID
  17. @ApiModelProperty(value="主键ID",name="id")
  18. private String id;
  19. // 机构ID
  20. @ApiModelProperty(value="机构ID",name="orgId")
  21. private String orgId;
  22. // 数据所属行政区代码
  23. @ApiModelProperty(value="数据所属行政区代码",name="province")
  24. private String province;
  25. // 追责属性 1被上级追责 2对下级追责
  26. @ApiModelProperty(value="追责属性 1被上级追责 2对下级追责",name="accuntPrp")
  27. @ExcelImport(titleName = "追责属性", subString = 1, notNull = true)
  28. private String accuntPrp;
  29. // 追责事项
  30. @ApiModelProperty(value="追责事项",name="accuntMttr")
  31. @ExcelImport(titleName = "追责事项")
  32. private String accuntMttr;
  33. // 对象属性 1水行政主管部门 2市场主体 3自然人
  34. @ApiModelProperty(value="对象属性 1水行政主管部门 2市场主体 3自然人",name="accuntMprp")
  35. @ExcelImport(titleName = "对象属性", subString = 1, notNull = true)
  36. private String accuntMprp;
  37. // 被追责对象名称
  38. @ApiModelProperty(value="被追责对象名称",name="accuntName")
  39. @ExcelImport(titleName = "被追责对象名称", notNull = true)
  40. private String accuntName;
  41. // 被追责对象行政区编码
  42. @ApiModelProperty(value="被追责对象行政区编码",name="adCode")
  43. @ExcelImport(titleName = "行政区划编码", notNull = true)
  44. private String adCode;
  45. // 被追责对象行政区名称
  46. @ApiModelProperty(value="被追责对象行政区名称",name="adName")
  47. private String adName;
  48. // 被追责对象地址
  49. @ApiModelProperty(value="被追责对象地址",name="loc")
  50. private String loc;
  51. // 追责项目
  52. @ApiModelProperty(value="追责项目",name="accuntItem")
  53. @ExcelImport(titleName = "追责项目", notNull = true)
  54. private String accuntItem;
  55. // 追责种类1责令整改 2约谈 3 情况通报
  56. @ApiModelProperty(value="追责种类1责令整改 2约谈 3 情况通报",name="accuntKind")
  57. @ExcelImport(titleName = "追责种类", notNull = true)
  58. private String accuntKind;
  59. // 追责日期
  60. @ApiModelProperty(value="追责日期",name="accuntTm")
  61. @ExcelImport(titleName = "追责日期", notNull = true)
  62. private Date accuntTm;
  63. // 状态 1未发布 2 发布
  64. @ApiModelProperty(value="状态 1未发布 2 发布",name="accuntStat")
  65. private String accuntStat;
  66. // 备注
  67. @ApiModelProperty(value="备注",name="note")
  68. private String note;
  69. // 创建人
  70. @ApiModelProperty(value="创建人",name="persId")
  71. private String persId;
  72. // 创建时间
  73. @ApiModelProperty(value="创建时间",name="intm")
  74. private Date intm;
  75. // 修改时间
  76. @ApiModelProperty(value="修改时间",name="uptm")
  77. private Date uptm;
  78. // 数据状态(0:正常;9:删除)
  79. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  80. private String dataStat;
  81. public String getUnitName() {
  82. return unitName;
  83. }
  84. public void setUnitName(String unitName) {
  85. this.unitName = unitName;
  86. }
  87. @ApiModelProperty(value="追责单位",name="unitName")
  88. @ExcelImport(titleName = "追责单位", notNull = true)
  89. private String unitName;
  90. public BisInspAccunt() {
  91. }
  92. public String getId() {
  93. return id;
  94. }
  95. public void setId(String id) {
  96. this.id = id;
  97. }
  98. public String getOrgId() {
  99. return orgId;
  100. }
  101. public void setOrgId(String orgId) {
  102. this.orgId = orgId;
  103. }
  104. @Override
  105. public String getProvince() {
  106. return province;
  107. }
  108. @Override
  109. public void setProvince(String province) {
  110. this.province = province;
  111. }
  112. public String getAccuntPrp() {
  113. return accuntPrp;
  114. }
  115. public void setAccuntPrp(String accuntPrp) {
  116. this.accuntPrp = accuntPrp;
  117. }
  118. public String getAccuntMttr() {
  119. return accuntMttr;
  120. }
  121. public void setAccuntMttr(String accuntMttr) {
  122. this.accuntMttr = accuntMttr;
  123. }
  124. public String getAccuntMprp() {
  125. return accuntMprp;
  126. }
  127. public void setAccuntMprp(String accuntMprp) {
  128. this.accuntMprp = accuntMprp;
  129. }
  130. public String getAccuntName() {
  131. return accuntName;
  132. }
  133. public void setAccuntName(String accuntName) {
  134. this.accuntName = accuntName;
  135. }
  136. public String getAdCode() {
  137. return adCode;
  138. }
  139. public void setAdCode(String adCode) {
  140. this.adCode = adCode;
  141. }
  142. public String getAdName() {
  143. return adName;
  144. }
  145. public void setAdName(String adName) {
  146. this.adName = adName;
  147. }
  148. public String getLoc() {
  149. return loc;
  150. }
  151. public void setLoc(String loc) {
  152. this.loc = loc;
  153. }
  154. public String getAccuntItem() {
  155. return accuntItem;
  156. }
  157. public void setAccuntItem(String accuntItem) {
  158. this.accuntItem = accuntItem;
  159. }
  160. public String getAccuntKind() {
  161. return accuntKind;
  162. }
  163. public void setAccuntKind(String accuntKind) {
  164. this.accuntKind = accuntKind;
  165. }
  166. public Date getAccuntTm() {
  167. return accuntTm;
  168. }
  169. public void setAccuntTm(Date accuntTm) {
  170. this.accuntTm = accuntTm;
  171. }
  172. public String getAccuntStat() {
  173. return accuntStat;
  174. }
  175. public void setAccuntStat(String accuntStat) {
  176. this.accuntStat = accuntStat;
  177. }
  178. public String getNote() {
  179. return note;
  180. }
  181. public void setNote(String note) {
  182. this.note = note;
  183. }
  184. public String getPersId() {
  185. return persId;
  186. }
  187. public void setPersId(String persId) {
  188. this.persId = persId;
  189. }
  190. public Date getIntm() {
  191. return intm;
  192. }
  193. public void setIntm(Date intm) {
  194. this.intm = intm;
  195. }
  196. public Date getUptm() {
  197. return uptm;
  198. }
  199. public void setUptm(Date uptm) {
  200. this.uptm = uptm;
  201. }
  202. public String getDataStat() {
  203. return dataStat;
  204. }
  205. public void setDataStat(String dataStat) {
  206. this.dataStat = dataStat;
  207. }
  208. @Override
  209. public String toString() {
  210. return "BisInspAccunt{" +
  211. "id='" + id + '\'' +
  212. ", orgId='" + orgId + '\'' +
  213. ", province='" + province + '\'' +
  214. ", accuntPrp='" + accuntPrp + '\'' +
  215. ", accuntMttr='" + accuntMttr + '\'' +
  216. ", accuntMprp='" + accuntMprp + '\'' +
  217. ", accuntName='" + accuntName + '\'' +
  218. ", adCode='" + adCode + '\'' +
  219. ", adName='" + adName + '\'' +
  220. ", loc='" + loc + '\'' +
  221. ", accuntItem='" + accuntItem + '\'' +
  222. ", accuntKind='" + accuntKind + '\'' +
  223. ", accuntTm=" + accuntTm +
  224. ", accuntStat='" + accuntStat + '\'' +
  225. ", note='" + note + '\'' +
  226. ", persId='" + persId + '\'' +
  227. ", intm=" + intm +
  228. ", uptm=" + uptm +
  229. ", dataStat='" + dataStat + '\'' +
  230. ", unitName='" + unitName + '\'' +
  231. '}';
  232. }
  233. }