dd4ccb6d42b38122c326ee1c8aba3fccdd1ee6ff.svn-base 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiParam;
  5. import java.util.Date;
  6. import java.io.Serializable;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9. /**
  10. * BisInspFscPblmParam
  11. *
  12. * @author lune
  13. * @date 2019-7-19
  14. */
  15. public class BisInspFscPblmParam extends PageParam implements Serializable {
  16. @ApiModelProperty("主键id")
  17. private String id;
  18. @ApiModelProperty("登记表ID")
  19. private String rgstrId;
  20. @ApiModelProperty("责任单位")
  21. private String aUnit;
  22. @ApiModelProperty("问题信息")
  23. private String pblmDesc;
  24. @ApiModelProperty("问题照片编数量")
  25. private String pblmImgSum;
  26. @ApiModelProperty("问题照片编号")
  27. private String pblmImgNum;
  28. @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
  29. private String rectConc;
  30. @ApiModelProperty("整改详细情况")
  31. private String rectMeas;
  32. @ApiModelProperty("整改照片数量")
  33. private String rectImgSum;
  34. @ApiModelProperty("整改照片编号")
  35. private String rectImgNum;
  36. @ApiModelProperty("发现时间")
  37. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  38. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  39. private Date fdTm;
  40. @ApiModelProperty("复查组长")
  41. private String rectLead;
  42. @ApiModelProperty("复查组成员")
  43. private String rectMemb;
  44. @ApiModelProperty("复查时间")
  45. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  46. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  47. private Date rectTm;
  48. @ApiModelProperty("备注")
  49. private String note;
  50. @ApiModelProperty("数据状态(0:正常;9:删除)")
  51. private String dataStat;
  52. @ApiModelProperty("创建人")
  53. private String persId;
  54. @ApiModelProperty("督查组ID")
  55. private String groupId;
  56. @ApiModelProperty("创建时间")
  57. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  58. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  59. private Date inTm;
  60. @ApiModelProperty("修改时间")
  61. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  62. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  63. private Date upTm;
  64. @ApiModelProperty("督查组ids")
  65. private String orgIds;
  66. @ApiModelProperty("行政区编码")
  67. private String adCode;
  68. @ApiModelProperty("行政区名称")
  69. private String adName;
  70. @ApiModelProperty("筛选时间分类(1:发现时间,2:复查时间)")
  71. private String tmType;
  72. @ApiModelProperty("开始时间")
  73. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  74. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  75. private Date startTime;
  76. @ApiModelProperty("结束时间")
  77. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  78. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  79. private Date endTime;
  80. @ApiModelProperty("上报人")
  81. private String persName;
  82. @ApiModelProperty("项目名称")
  83. private String name;
  84. @ApiModelProperty("督查组名称")
  85. private String groupName;
  86. private String inIdsSql;
  87. public String getInIdsSql() {
  88. return inIdsSql;
  89. }
  90. public void setInIdsSql(String inIdsSql) {
  91. this.inIdsSql = inIdsSql;
  92. }
  93. public BisInspFscPblmParam() {
  94. }
  95. public String getId() {
  96. return id;
  97. }
  98. public void setId(String id) {
  99. this.id = id;
  100. }
  101. public String getRgstrId() {
  102. return rgstrId;
  103. }
  104. public void setRgstrId(String rgstrId) {
  105. this.rgstrId = rgstrId;
  106. }
  107. public String getAUnit() {
  108. return aUnit;
  109. }
  110. public void setAUnit(String aUnit) {
  111. this.aUnit = aUnit;
  112. }
  113. public String getPblmDesc() {
  114. return pblmDesc;
  115. }
  116. public void setPblmDesc(String pblmDesc) {
  117. this.pblmDesc = pblmDesc;
  118. }
  119. public String getPblmImgSum() {
  120. return pblmImgSum;
  121. }
  122. public void setPblmImgSum(String pblmImgSum) {
  123. this.pblmImgSum = pblmImgSum;
  124. }
  125. public String getPblmImgNum() {
  126. return pblmImgNum;
  127. }
  128. public void setPblmImgNum(String pblmImgNum) {
  129. this.pblmImgNum = pblmImgNum;
  130. }
  131. public String getRectConc() {
  132. return rectConc;
  133. }
  134. public void setRectConc(String rectConc) {
  135. this.rectConc = rectConc;
  136. }
  137. public String getRectMeas() {
  138. return rectMeas;
  139. }
  140. public void setRectMeas(String rectMeas) {
  141. this.rectMeas = rectMeas;
  142. }
  143. public String getRectImgSum() {
  144. return rectImgSum;
  145. }
  146. public void setRectImgSum(String rectImgSum) {
  147. this.rectImgSum = rectImgSum;
  148. }
  149. public String getRectImgNum() {
  150. return rectImgNum;
  151. }
  152. public void setRectImgNum(String rectImgNum) {
  153. this.rectImgNum = rectImgNum;
  154. }
  155. public Date getFdTm() {
  156. return fdTm;
  157. }
  158. public void setFdTm(Date fdTm) {
  159. this.fdTm = fdTm;
  160. }
  161. public String getRectLead() {
  162. return rectLead;
  163. }
  164. public void setRectLead(String rectLead) {
  165. this.rectLead = rectLead;
  166. }
  167. public String getRectMemb() {
  168. return rectMemb;
  169. }
  170. public void setRectMemb(String rectMemb) {
  171. this.rectMemb = rectMemb;
  172. }
  173. public Date getRectTm() {
  174. return rectTm;
  175. }
  176. public void setRectTm(Date rectTm) {
  177. this.rectTm = rectTm;
  178. }
  179. public String getNote() {
  180. return note;
  181. }
  182. public void setNote(String note) {
  183. this.note = note;
  184. }
  185. public String getDataStat() {
  186. return dataStat;
  187. }
  188. public void setDataStat(String dataStat) {
  189. this.dataStat = dataStat;
  190. }
  191. public String getPersId() {
  192. return persId;
  193. }
  194. public void setPersId(String persId) {
  195. this.persId = persId;
  196. }
  197. public String getGroupId() {
  198. return groupId;
  199. }
  200. public void setGroupId(String groupId) {
  201. this.groupId = groupId;
  202. }
  203. public Date getInTm() {
  204. return inTm;
  205. }
  206. public void setInTm(Date inTm) {
  207. this.inTm = inTm;
  208. }
  209. public Date getUpTm() {
  210. return upTm;
  211. }
  212. public void setUpTm(Date upTm) {
  213. this.upTm = upTm;
  214. }
  215. public String getOrgIds() {
  216. return orgIds;
  217. }
  218. public void setOrgIds(String orgIds) {
  219. this.orgIds = orgIds;
  220. }
  221. public String getAdCode() {
  222. return adCode;
  223. }
  224. public void setAdCode(String adCode) {
  225. this.adCode = adCode;
  226. }
  227. public String getAdName() {
  228. return adName;
  229. }
  230. public void setAdName(String adName) {
  231. this.adName = adName;
  232. }
  233. public String getTmType() {
  234. return tmType;
  235. }
  236. public void setTmType(String tmType) {
  237. this.tmType = tmType;
  238. }
  239. public Date getStartTime() {
  240. return startTime;
  241. }
  242. public void setStartTime(Date startTime) {
  243. this.startTime = startTime;
  244. }
  245. public Date getEndTime() {
  246. return endTime;
  247. }
  248. public void setEndTime(Date endTime) {
  249. this.endTime = endTime;
  250. }
  251. public String getPersName() {
  252. return persName;
  253. }
  254. public void setPersName(String persName) {
  255. this.persName = persName;
  256. }
  257. public String getName() {
  258. return name;
  259. }
  260. public void setName(String name) {
  261. this.name = name;
  262. }
  263. public String getGroupName() {
  264. return groupName;
  265. }
  266. public void setGroupName(String groupName) {
  267. this.groupName = groupName;
  268. }
  269. }