ab78f3d293653caba8f4c0c6c1b63b2936c553e0.svn-base 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  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.BisInspFscPblmDto;
  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:BisInspFscPblm
  13. *
  14. * @author lune
  15. * @date 2019-7-19
  16. */
  17. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  18. public class BisInspFscPblm 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("主键id")
  34. private String id;
  35. @ApiModelProperty("登记表ID")
  36. private String rgstrId;
  37. @ApiModelProperty("责任单位")
  38. private String aUnit;
  39. @ApiModelProperty("问题信息")
  40. private String pblmDesc;
  41. @ApiModelProperty("问题照片编数量")
  42. private String pblmImgSum;
  43. @ApiModelProperty("问题照片编号")
  44. private String pblmImgNum;
  45. @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
  46. private String rectConc;
  47. @ApiModelProperty("整改详细情况")
  48. private String rectMeas;
  49. @ApiModelProperty("整改照片数量")
  50. private String rectImgSum;
  51. @ApiModelProperty("整改照片编号")
  52. private String rectImgNum;
  53. @ApiModelProperty("发现时间")
  54. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  55. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  56. private Date fdTm;
  57. @ApiModelProperty("复查组长")
  58. private String rectLead;
  59. @ApiModelProperty("复查组成员")
  60. private String rectMemb;
  61. @ApiModelProperty("复查时间")
  62. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  63. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  64. private Date rectTm;
  65. @ApiModelProperty("备注")
  66. private String note;
  67. @ApiModelProperty("数据状态(0:正常;9:删除)")
  68. private String dataStat;
  69. @ApiModelProperty("创建人")
  70. private String persId;
  71. @ApiModelProperty("督查组ID")
  72. private String groupId;
  73. @ApiModelProperty("督查组名称")
  74. private String groupName;
  75. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  76. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  77. @ApiModelProperty("创建时间")
  78. private Date inTm;
  79. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  80. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  81. @ApiModelProperty("修改时间")
  82. private Date upTm;
  83. private List<GwComFile> gwComFiles;
  84. @ApiModelProperty("上报人")
  85. private String persName;
  86. public List<GwComFile> getGwComFiles() {
  87. return gwComFiles;
  88. }
  89. public void setGwComFiles(List<GwComFile> gwComFiles) {
  90. this.gwComFiles = gwComFiles;
  91. }
  92. public BisInspFscPblm() {
  93. }
  94. public BisInspFscPblm(BisInspFscPblmDto fscPblmDto) {
  95. this.id = fscPblmDto.getId();
  96. this.rgstrId = fscPblmDto.getRgstrId();
  97. this.aUnit = fscPblmDto.getaUnit();
  98. this.pblmDesc = fscPblmDto.getPblmDesc();
  99. this.pblmImgSum = fscPblmDto.getPblmImgSum();
  100. this.pblmImgNum = fscPblmDto.getPblmImgNum();
  101. this.rectConc = fscPblmDto.getRectConc();
  102. this.rectMeas = fscPblmDto.getRectMeas();
  103. this.rectImgSum = fscPblmDto.getRectImgSum();
  104. this.rectImgNum = fscPblmDto.getRectImgNum();
  105. this.fdTm = fscPblmDto.getFdTm();
  106. this.rectLead = fscPblmDto.getRectLead();
  107. this.rectMemb = fscPblmDto.getRectMemb();
  108. this.rectTm = fscPblmDto.getRectTm();
  109. this.note = fscPblmDto.getNote();
  110. this.dataStat = fscPblmDto.getDataStat();
  111. this.persId = fscPblmDto.getPersId();
  112. this.groupId = fscPblmDto.getGroupId();
  113. this.inTm = fscPblmDto.getInTm();
  114. this.upTm = fscPblmDto.getUpTm();
  115. }
  116. public String getPersName() {
  117. return persName;
  118. }
  119. public void setPersName(String persName) {
  120. this.persName = persName;
  121. }
  122. public String getId() {
  123. return id;
  124. }
  125. public void setId(String id) {
  126. this.id = id;
  127. }
  128. @Override
  129. public String getRgstrId() {
  130. return rgstrId;
  131. }
  132. @Override
  133. public void setRgstrId(String rgstrId) {
  134. this.rgstrId = rgstrId;
  135. }
  136. public String getAUnit() {
  137. return aUnit;
  138. }
  139. public void setAUnit(String aUnit) {
  140. this.aUnit = aUnit;
  141. }
  142. public String getPblmDesc() {
  143. return pblmDesc;
  144. }
  145. public void setPblmDesc(String pblmDesc) {
  146. this.pblmDesc = pblmDesc;
  147. }
  148. public String getPblmImgSum() {
  149. return pblmImgSum;
  150. }
  151. public void setPblmImgSum(String pblmImgSum) {
  152. this.pblmImgSum = pblmImgSum;
  153. }
  154. public String getPblmImgNum() {
  155. return pblmImgNum;
  156. }
  157. public void setPblmImgNum(String pblmImgNum) {
  158. this.pblmImgNum = pblmImgNum;
  159. }
  160. public String getRectConc() {
  161. return rectConc;
  162. }
  163. public void setRectConc(String rectConc) {
  164. this.rectConc = rectConc;
  165. }
  166. public String getRectMeas() {
  167. return rectMeas;
  168. }
  169. public void setRectMeas(String rectMeas) {
  170. this.rectMeas = rectMeas;
  171. }
  172. public String getRectImgSum() {
  173. return rectImgSum;
  174. }
  175. public void setRectImgSum(String rectImgSum) {
  176. this.rectImgSum = rectImgSum;
  177. }
  178. public String getRectImgNum() {
  179. return rectImgNum;
  180. }
  181. public void setRectImgNum(String rectImgNum) {
  182. this.rectImgNum = rectImgNum;
  183. }
  184. public Date getFdTm() {
  185. return fdTm;
  186. }
  187. public void setFdTm(Date fdTm) {
  188. this.fdTm = fdTm;
  189. }
  190. public String getRectLead() {
  191. return rectLead;
  192. }
  193. public void setRectLead(String rectLead) {
  194. this.rectLead = rectLead;
  195. }
  196. public String getRectMemb() {
  197. return rectMemb;
  198. }
  199. public void setRectMemb(String rectMemb) {
  200. this.rectMemb = rectMemb;
  201. }
  202. public Date getRectTm() {
  203. return rectTm;
  204. }
  205. public void setRectTm(Date rectTm) {
  206. this.rectTm = rectTm;
  207. }
  208. public String getNote() {
  209. return note;
  210. }
  211. public void setNote(String note) {
  212. this.note = note;
  213. }
  214. public String getDataStat() {
  215. return dataStat;
  216. }
  217. public void setDataStat(String dataStat) {
  218. this.dataStat = dataStat;
  219. }
  220. public String getPersId() {
  221. return persId;
  222. }
  223. public void setPersId(String persId) {
  224. this.persId = persId;
  225. }
  226. @Override
  227. public String getGroupId() {
  228. return groupId;
  229. }
  230. @Override
  231. public void setGroupId(String groupId) {
  232. this.groupId = groupId;
  233. }
  234. public Date getInTm() {
  235. return inTm;
  236. }
  237. public void setInTm(Date inTm) {
  238. this.inTm = inTm;
  239. }
  240. public Date getUpTm() {
  241. return upTm;
  242. }
  243. public void setUpTm(Date upTm) {
  244. this.upTm = upTm;
  245. }
  246. public String getaUnit() {
  247. return aUnit;
  248. }
  249. public void setaUnit(String aUnit) {
  250. this.aUnit = aUnit;
  251. }
  252. @Override
  253. public String toString() {
  254. return "BisInspFscPblm [" + "id=" + id + ", rgstrId=" + rgstrId + ", aUnit=" + aUnit + ", pblmDesc=" + pblmDesc + ", pblmImgSum=" + pblmImgSum + ", pblmImgNum=" + pblmImgNum + ", rectConc=" + rectConc + ", rectMeas=" + rectMeas + ", rectImgSum=" + rectImgSum + ", rectImgNum=" + rectImgNum + ", fdTm=" + fdTm + ", rectLead=" + rectLead + ", rectMemb=" + rectMemb + ", rectTm=" + rectTm + ", note=" + note + ", dataStat=" + dataStat + ", persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + "]";
  255. }
  256. public String getGroupName() {
  257. return groupName;
  258. }
  259. public void setGroupName(String groupName) {
  260. this.groupName = groupName;
  261. }
  262. public String getCountry() {
  263. return country;
  264. }
  265. public void setCountry(String country) {
  266. this.country = country;
  267. }
  268. public String getCity() {
  269. return city;
  270. }
  271. public void setCity(String city) {
  272. this.city = city;
  273. }
  274. @Override
  275. public String getProvince() {
  276. return province;
  277. }
  278. @Override
  279. public void setProvince(String province) {
  280. this.province = province;
  281. }
  282. public String getAdmOrg() {
  283. return admOrg;
  284. }
  285. public void setAdmOrg(String admOrg) {
  286. this.admOrg = admOrg;
  287. }
  288. public String getType() {
  289. return type;
  290. }
  291. public void setType(String type) {
  292. this.type = type;
  293. }
  294. public String getName() {
  295. return name;
  296. }
  297. public void setName(String name) {
  298. this.name = name;
  299. }
  300. public String getBasName() {
  301. return basName;
  302. }
  303. public void setBasName(String basName) {
  304. this.basName = basName;
  305. }
  306. }