0070f238a5ca73d265069c5efa472a0e30da8404.svn-base 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspFscPblm;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * Created by jinshui on 2019/7/19.
  10. */
  11. public class BisInspFscPblmDto implements Serializable {
  12. private String num;
  13. private String province;
  14. private String city;
  15. private String country;
  16. private String org;
  17. private String name;
  18. private String type;
  19. private String checkLead;
  20. private String checkMemb;
  21. private String adFullName;
  22. private String adCode;
  23. @ApiModelProperty("督查对象组id")
  24. private String groupObjId;
  25. @ApiModelProperty("主键id")
  26. private String id;
  27. @ApiModelProperty("登记表ID")
  28. private String rgstrId;
  29. @ApiModelProperty("责任单位")
  30. private String aUnit;
  31. @ApiModelProperty("问题信息")
  32. private String pblmDesc;
  33. @ApiModelProperty("问题照片编数量")
  34. private String pblmImgSum;
  35. @ApiModelProperty("问题照片编号")
  36. private String pblmImgNum;
  37. @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
  38. private String rectConc;
  39. @ApiModelProperty("整改详细情况")
  40. private String rectMeas;
  41. @ApiModelProperty("整改照片数量")
  42. private String rectImgSum;
  43. @ApiModelProperty("整改照片编号")
  44. private String rectImgNum;
  45. @ApiModelProperty("发现时间")
  46. @DateTimeFormat(pattern = "yyyy-MM-dd")
  47. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  48. private Date fdTm;
  49. @ApiModelProperty("复查组长")
  50. private String rectLead;
  51. @ApiModelProperty("复查组成员")
  52. private String rectMemb;
  53. @DateTimeFormat(pattern = "yyyy-MM-dd")
  54. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  55. @ApiModelProperty("复查时间")
  56. private Date rectTm;
  57. @ApiModelProperty("备注")
  58. private String note;
  59. @ApiModelProperty("数据状态(0:正常;9:删除)")
  60. private String dataStat;
  61. @ApiModelProperty("创建人")
  62. private String persId;
  63. @ApiModelProperty("督查组ID")
  64. private String groupId;
  65. @ApiModelProperty("创建时间")
  66. private Date inTm;
  67. @ApiModelProperty("修改时间")
  68. private Date upTm;
  69. private String rectTime;
  70. private String fdTime;
  71. public String getAdCode() {
  72. return adCode;
  73. }
  74. public void setAdCode(String adCode) {
  75. this.adCode = adCode;
  76. }
  77. public String getRectTime() {
  78. return rectTime;
  79. }
  80. public void setRectTime(String rectTime) {
  81. this.rectTime = rectTime;
  82. }
  83. public String getFdTime() {
  84. return fdTime;
  85. }
  86. public void setFdTime(String fdTime) {
  87. this.fdTime = fdTime;
  88. }
  89. public String getAdFullName() {
  90. return adFullName;
  91. }
  92. public void setAdFullName(String adFullName) {
  93. this.adFullName = adFullName;
  94. }
  95. public String getGroupObjId() {
  96. return groupObjId;
  97. }
  98. public void setGroupObjId(String groupObjId) {
  99. this.groupObjId = groupObjId;
  100. }
  101. public String getId() {
  102. return id;
  103. }
  104. public void setId(String id) {
  105. this.id = id;
  106. }
  107. public String getRgstrId() {
  108. return rgstrId;
  109. }
  110. public void setRgstrId(String rgstrId) {
  111. this.rgstrId = rgstrId;
  112. }
  113. public String getaUnit() {
  114. return aUnit;
  115. }
  116. public void setaUnit(String aUnit) {
  117. this.aUnit = aUnit;
  118. }
  119. public void setAUnit(String aUnit) {
  120. this.aUnit = aUnit;
  121. }
  122. public String getAUnit() {
  123. return this.aUnit;
  124. }
  125. public String getPblmDesc() {
  126. return pblmDesc;
  127. }
  128. public void setPblmDesc(String pblmDesc) {
  129. this.pblmDesc = pblmDesc;
  130. }
  131. public String getPblmImgSum() {
  132. return pblmImgSum;
  133. }
  134. public void setPblmImgSum(String pblmImgSum) {
  135. this.pblmImgSum = pblmImgSum;
  136. }
  137. public String getPblmImgNum() {
  138. return pblmImgNum;
  139. }
  140. public void setPblmImgNum(String pblmImgNum) {
  141. this.pblmImgNum = pblmImgNum;
  142. }
  143. public String getRectConc() {
  144. return rectConc;
  145. }
  146. public void setRectConc(String rectConc) {
  147. this.rectConc = rectConc;
  148. }
  149. public String getRectMeas() {
  150. return rectMeas;
  151. }
  152. public void setRectMeas(String rectMeas) {
  153. this.rectMeas = rectMeas;
  154. }
  155. public String getRectImgSum() {
  156. return rectImgSum;
  157. }
  158. public void setRectImgSum(String rectImgSum) {
  159. this.rectImgSum = rectImgSum;
  160. }
  161. public String getRectImgNum() {
  162. return rectImgNum;
  163. }
  164. public void setRectImgNum(String rectImgNum) {
  165. this.rectImgNum = rectImgNum;
  166. }
  167. public Date getFdTm() {
  168. return fdTm;
  169. }
  170. public void setFdTm(Date fdTm) {
  171. this.fdTm = fdTm;
  172. }
  173. public String getRectLead() {
  174. return rectLead;
  175. }
  176. public void setRectLead(String rectLead) {
  177. this.rectLead = rectLead;
  178. }
  179. public String getRectMemb() {
  180. return rectMemb;
  181. }
  182. public void setRectMemb(String rectMemb) {
  183. this.rectMemb = rectMemb;
  184. }
  185. public Date getRectTm() {
  186. return rectTm;
  187. }
  188. public void setRectTm(Date rectTm) {
  189. this.rectTm = rectTm;
  190. }
  191. public String getNote() {
  192. return note;
  193. }
  194. public void setNote(String note) {
  195. this.note = note;
  196. }
  197. public String getDataStat() {
  198. return dataStat;
  199. }
  200. public void setDataStat(String dataStat) {
  201. this.dataStat = dataStat;
  202. }
  203. public String getPersId() {
  204. return persId;
  205. }
  206. public void setPersId(String persId) {
  207. this.persId = persId;
  208. }
  209. public String getGroupId() {
  210. return groupId;
  211. }
  212. public void setGroupId(String groupId) {
  213. this.groupId = groupId;
  214. }
  215. public Date getInTm() {
  216. return inTm;
  217. }
  218. public void setInTm(Date inTm) {
  219. this.inTm = inTm;
  220. }
  221. public Date getUpTm() {
  222. return upTm;
  223. }
  224. public void setUpTm(Date upTm) {
  225. this.upTm = upTm;
  226. }
  227. public String getNum() {
  228. return num;
  229. }
  230. public void setNum(String num) {
  231. this.num = num;
  232. }
  233. public String getProvince() {
  234. return province;
  235. }
  236. public void setProvince(String province) {
  237. this.province = province;
  238. }
  239. public String getCity() {
  240. return city;
  241. }
  242. public void setCity(String city) {
  243. this.city = city;
  244. }
  245. public String getCountry() {
  246. return country;
  247. }
  248. public void setCountry(String country) {
  249. this.country = country;
  250. }
  251. public String getOrg() {
  252. return org;
  253. }
  254. public void setOrg(String org) {
  255. this.org = org;
  256. }
  257. public String getName() {
  258. return name;
  259. }
  260. public void setName(String name) {
  261. this.name = name;
  262. }
  263. public String getType() {
  264. return type;
  265. }
  266. public void setType(String type) {
  267. this.type = type;
  268. }
  269. public String getCheckLead() {
  270. return checkLead;
  271. }
  272. public void setCheckLead(String checkLead) {
  273. this.checkLead = checkLead;
  274. }
  275. public String getCheckMemb() {
  276. return checkMemb;
  277. }
  278. public void setCheckMemb(String checkMemb) {
  279. this.checkMemb = checkMemb;
  280. }
  281. }