4d1fc7b92084e9391f6ab144d2da7ac0b8ef4736.svn-base 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import java.util.List;
  5. import cn.com.goldenwater.dcproj.dto.BisInspOtherPblmDto;
  6. import com.fasterxml.jackson.annotation.JsonFormat;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import cn.com.goldenwater.core.model.BaseBean;
  9. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  10. import org.springframework.format.annotation.DateTimeFormat;
  11. /**
  12. * entity:BisInspOtherPblm
  13. *
  14. * @author lune
  15. * @date 2019-7-19
  16. */
  17. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  18. public class BisInspOtherPblm extends BaseBean implements Serializable {
  19. @ApiModelProperty("项目名称")
  20. private String name;
  21. @ApiModelProperty("检查分类(1:水库;2:水闸;3:人饮;4:水利工程建设;5:水利工程运行)")
  22. private String type;
  23. @ApiModelProperty("所属流域机构")
  24. private String admOrg;
  25. @ApiModelProperty("所属流域机构名称")
  26. private String basName;
  27. @ApiModelProperty("省")
  28. private String province;
  29. @ApiModelProperty("市")
  30. private String city;
  31. @ApiModelProperty("县")
  32. private String country;
  33. @ApiModelProperty("创建人")
  34. private String persId;
  35. @ApiModelProperty("督查组ID")
  36. private String groupId;
  37. @ApiModelProperty("督查组名称")
  38. private String groupName;
  39. @ApiModelProperty("创建时间")
  40. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  41. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  42. private Date inTm;
  43. @ApiModelProperty("修改时间")
  44. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  45. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  46. private Date upTm;
  47. @ApiModelProperty("主键id")
  48. private String id;
  49. @ApiModelProperty("登记表ID")
  50. private String rgstrId;
  51. @ApiModelProperty("责任单位")
  52. private String aUnit;
  53. @ApiModelProperty("问题数量")
  54. private String pblmNum;
  55. @ApiModelProperty("举报调查核实情况(0:不属实;1:部分属实;2:属实)")
  56. private String pblmIsTrue;
  57. @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
  58. private String rectConc;
  59. @ApiModelProperty("整改详细情况")
  60. private String rectMeas;
  61. @ApiModelProperty("发现时间")
  62. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  63. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  64. private Date fdTm;
  65. @ApiModelProperty("复查组长")
  66. private String rectLead;
  67. @ApiModelProperty("复查组成员")
  68. private String rectMemb;
  69. @ApiModelProperty("复查时间")
  70. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  71. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  72. private Date rectTm;
  73. @ApiModelProperty("备注")
  74. private String note;
  75. @ApiModelProperty("数据状态(0:正常;9:删除)")
  76. private String dataStat;
  77. private List<GwComFile> gwComFiles;
  78. @ApiModelProperty("上报人")
  79. private String persName;
  80. public BisInspOtherPblm() {
  81. }
  82. public BisInspOtherPblm(BisInspOtherPblmDto dto) {
  83. this.id = dto.getId();
  84. this.rgstrId = dto.getRgstrId();
  85. this.pblmNum = dto.getPblmNum();
  86. this.pblmIsTrue = dto.getPblmIsTrue();
  87. this.aUnit = dto.getaUnit();
  88. this.rectConc = dto.getRectConc();
  89. this.rectMeas = dto.getRectMeas();
  90. this.fdTm = dto.getFdTm();
  91. this.rectLead = dto.getRectLead();
  92. this.rectMemb = dto.getRectMemb();
  93. this.rectTm = dto.getRectTm();
  94. this.note = dto.getNote();
  95. this.dataStat = dto.getDataStat();
  96. this.persId = dto.getPersId();
  97. this.groupId = dto.getGroupId();
  98. this.inTm = dto.getInTm();
  99. this.upTm = dto.getUpTm();
  100. }
  101. public String getPersName() {
  102. return persName;
  103. }
  104. public void setPersName(String persName) {
  105. this.persName = persName;
  106. }
  107. public String getaUnit() {
  108. return aUnit;
  109. }
  110. public void setaUnit(String aUnit) {
  111. this.aUnit = aUnit;
  112. }
  113. public List<GwComFile> getGwComFiles() {
  114. return gwComFiles;
  115. }
  116. public void setGwComFiles(List<GwComFile> gwComFiles) {
  117. this.gwComFiles = gwComFiles;
  118. }
  119. public String getPersId() {
  120. return persId;
  121. }
  122. public void setPersId(String persId) {
  123. this.persId = persId;
  124. }
  125. @Override
  126. public String getGroupId() {
  127. return groupId;
  128. }
  129. @Override
  130. public void setGroupId(String groupId) {
  131. this.groupId = groupId;
  132. }
  133. public Date getInTm() {
  134. return inTm;
  135. }
  136. public void setInTm(Date inTm) {
  137. this.inTm = inTm;
  138. }
  139. public Date getUpTm() {
  140. return upTm;
  141. }
  142. public void setUpTm(Date upTm) {
  143. this.upTm = upTm;
  144. }
  145. public String getId() {
  146. return id;
  147. }
  148. public void setId(String id) {
  149. this.id = id;
  150. }
  151. @Override
  152. public String getRgstrId() {
  153. return rgstrId;
  154. }
  155. @Override
  156. public void setRgstrId(String rgstrId) {
  157. this.rgstrId = rgstrId;
  158. }
  159. public String getAUnit() {
  160. return aUnit;
  161. }
  162. public void setAUnit(String aUnit) {
  163. this.aUnit = aUnit;
  164. }
  165. public String getPblmNum() {
  166. return pblmNum;
  167. }
  168. public void setPblmNum(String pblmNum) {
  169. this.pblmNum = pblmNum;
  170. }
  171. public String getPblmIsTrue() {
  172. return pblmIsTrue;
  173. }
  174. public void setPblmIsTrue(String pblmIsTrue) {
  175. this.pblmIsTrue = pblmIsTrue;
  176. }
  177. public String getRectConc() {
  178. return rectConc;
  179. }
  180. public void setRectConc(String rectConc) {
  181. this.rectConc = rectConc;
  182. }
  183. public String getRectMeas() {
  184. return rectMeas;
  185. }
  186. public void setRectMeas(String rectMeas) {
  187. this.rectMeas = rectMeas;
  188. }
  189. public Date getFdTm() {
  190. return fdTm;
  191. }
  192. public void setFdTm(Date fdTm) {
  193. this.fdTm = fdTm;
  194. }
  195. public String getRectLead() {
  196. return rectLead;
  197. }
  198. public void setRectLead(String rectLead) {
  199. this.rectLead = rectLead;
  200. }
  201. public String getRectMemb() {
  202. return rectMemb;
  203. }
  204. public void setRectMemb(String rectMemb) {
  205. this.rectMemb = rectMemb;
  206. }
  207. public Date getRectTm() {
  208. return rectTm;
  209. }
  210. public void setRectTm(Date rectTm) {
  211. this.rectTm = rectTm;
  212. }
  213. public String getNote() {
  214. return note;
  215. }
  216. public void setNote(String note) {
  217. this.note = note;
  218. }
  219. public String getDataStat() {
  220. return dataStat;
  221. }
  222. public void setDataStat(String dataStat) {
  223. this.dataStat = dataStat;
  224. }
  225. @Override
  226. public String toString() {
  227. return "BisInspOtherPblm [" + "persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + ", id=" + id + ", rgstrId=" + rgstrId + ", aUnit=" + aUnit + ", pblmNum=" + pblmNum + ", pblmIsTrue=" + pblmIsTrue + ", rectConc=" + rectConc + ", rectMeas=" + rectMeas + ", fdTm=" + fdTm + ", rectLead=" + rectLead + ", rectMemb=" + rectMemb + ", rectTm=" + rectTm + ", note=" + note + ", dataStat=" + dataStat + "]";
  228. }
  229. public String getName() {
  230. return name;
  231. }
  232. public void setName(String name) {
  233. this.name = name;
  234. }
  235. public String getType() {
  236. return type;
  237. }
  238. public void setType(String type) {
  239. this.type = type;
  240. }
  241. public String getAdmOrg() {
  242. return admOrg;
  243. }
  244. public void setAdmOrg(String admOrg) {
  245. this.admOrg = admOrg;
  246. }
  247. public String getBasName() {
  248. return basName;
  249. }
  250. public void setBasName(String basName) {
  251. this.basName = basName;
  252. }
  253. @Override
  254. public String getProvince() {
  255. return province;
  256. }
  257. @Override
  258. public void setProvince(String province) {
  259. this.province = province;
  260. }
  261. public String getCity() {
  262. return city;
  263. }
  264. public void setCity(String city) {
  265. this.city = city;
  266. }
  267. public String getCountry() {
  268. return country;
  269. }
  270. public void setCountry(String country) {
  271. this.country = country;
  272. }
  273. public String getGroupName() {
  274. return groupName;
  275. }
  276. public void setGroupName(String groupName) {
  277. this.groupName = groupName;
  278. }
  279. }