e0edbaa4b002ae23c07228e8bc7927f376238d32.svn-base 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspPblmPlist;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Arrays;
  7. import java.util.Date;
  8. /**
  9. * BisInspPblmPlistParam
  10. *
  11. * @author lhc
  12. * @date 2020-11-23
  13. */
  14. public class BisInspPblmPlistParam extends BisInspPblmPlist implements Serializable {
  15. @ApiModelProperty("业务处室")
  16. private String[] depm;
  17. @ApiModelProperty("开始时间")
  18. private Date sttm;
  19. @ApiModelProperty("结束时间")
  20. private Date entm;
  21. @ApiModelProperty("行政区划")
  22. private String adCode;
  23. @ApiModelProperty("时间类型")
  24. private String timeType;
  25. @ApiParam(
  26. name = "pageNum",
  27. value = "页码",
  28. defaultValue = "1"
  29. )
  30. private int pageNum = 1;
  31. @ApiParam(
  32. name = "pageSize",
  33. value = "每页记录数",
  34. defaultValue = "10"
  35. )
  36. private int pageSize = 10;
  37. @ApiParam(
  38. name = "orderBy",
  39. value = "排序语句(例如:id desc, create_time desc)"
  40. )
  41. private String orderBy;
  42. @ApiParam(
  43. name = "count",
  44. value = "是否查询总数(默认不)",
  45. defaultValue = "false"
  46. )
  47. private boolean count = false;
  48. @ApiParam(
  49. name = "offset",
  50. value = "偏移量:上页最后一条记录标识"
  51. )
  52. private String offset;
  53. /**
  54. * 查询人是否是省级账号,1是,2否
  55. */
  56. private String provincialLevel;
  57. /**
  58. * 区分查询类型 省 province 市 city 县 county
  59. */
  60. private String orgType;
  61. /**
  62. * 审批是否同意 1是 2否
  63. */
  64. private String isAgree;
  65. /**
  66. * 审批 意见
  67. */
  68. private String comment;
  69. /**
  70. * 是否系统整改问题 (非导入) 1是 2否
  71. */
  72. private String isSys;
  73. @ApiModelProperty("开始时间,YYYY-MM-DD")
  74. private String endTime;
  75. @ApiModelProperty("结束时间,YYYY-MM-DD")
  76. private String startTime;
  77. @ApiModelProperty("是否有多媒体")
  78. private String hasVedio;
  79. /**
  80. * 督查单位 、 督查部门
  81. */
  82. private String leadDep;
  83. private String orgNm;
  84. @ApiModelProperty("是否典型问题")
  85. private String ifCasePblm;
  86. public BisInspPblmPlistParam() {
  87. }
  88. public String getTimeType() {
  89. return timeType;
  90. }
  91. public void setTimeType(String timeType) {
  92. this.timeType = timeType;
  93. }
  94. public String[] getDepm() {
  95. return depm;
  96. }
  97. public void setDepm(String[] depm) {
  98. this.depm = depm;
  99. }
  100. public Date getSttm() {
  101. return sttm;
  102. }
  103. public void setSttm(Date sttm) {
  104. this.sttm = sttm;
  105. }
  106. public Date getEntm() {
  107. return entm;
  108. }
  109. public void setEntm(Date entm) {
  110. this.entm = entm;
  111. }
  112. public int getPageNum() {
  113. return this.pageNum;
  114. }
  115. public void setPageNum(int pageNum) {
  116. this.pageNum = pageNum;
  117. }
  118. public int getPageSize() {
  119. return this.pageSize;
  120. }
  121. public void setPageSize(int pageSize) {
  122. this.pageSize = pageSize;
  123. }
  124. public String getOrderBy() {
  125. return this.orderBy;
  126. }
  127. public void setOrderBy(String orderBy) {
  128. this.orderBy = orderBy;
  129. }
  130. public boolean getCount() {
  131. return this.count;
  132. }
  133. public void setCount(boolean containPageInfo) {
  134. this.count = this.count;
  135. }
  136. public String getOffset() {
  137. return this.offset;
  138. }
  139. public void setOffset(String offset) {
  140. this.offset = offset;
  141. }
  142. public String getProvincialLevel() {
  143. return provincialLevel;
  144. }
  145. public String getOrgType() {
  146. return orgType;
  147. }
  148. public void setOrgType(String orgType) {
  149. this.orgType = orgType;
  150. }
  151. public String getIsAgree() {
  152. return isAgree;
  153. }
  154. public void setIsAgree(String isAgree) {
  155. this.isAgree = isAgree;
  156. }
  157. public String getComment() {
  158. return comment;
  159. }
  160. public void setComment(String comment) {
  161. this.comment = comment;
  162. }
  163. public void setProvincialLevel(String provincialLevel) {
  164. this.provincialLevel = provincialLevel;
  165. }
  166. public String getAdCode() {
  167. return adCode;
  168. }
  169. public void setAdCode(String adCode) {
  170. this.adCode = adCode;
  171. }
  172. public String getIsSys() {
  173. return isSys;
  174. }
  175. public void setIsSys(String isSys) {
  176. this.isSys = isSys;
  177. }
  178. public String getEndTime() {
  179. return endTime;
  180. }
  181. public void setEndTime(String endTime) {
  182. this.endTime = endTime;
  183. }
  184. public String getStartTime() {
  185. return startTime;
  186. }
  187. public void setStartTime(String startTime) {
  188. this.startTime = startTime;
  189. }
  190. public String getHasVedio() {
  191. return hasVedio;
  192. }
  193. public void setHasVedio(String hasVedio) {
  194. this.hasVedio = hasVedio;
  195. }
  196. public String getLeadDep() {
  197. return leadDep;
  198. }
  199. public void setLeadDep(String leadDep) {
  200. this.leadDep = leadDep;
  201. }
  202. public String getOrgNm() {
  203. return orgNm;
  204. }
  205. public void setOrgNm(String orgNm) {
  206. this.orgNm = orgNm;
  207. }
  208. public String getIfCasePblm() {
  209. return ifCasePblm;
  210. }
  211. public void setIfCasePblm(String ifCasePblm) {
  212. this.ifCasePblm = ifCasePblm;
  213. }
  214. @Override
  215. public String toString() {
  216. return "BisInspPblmPlistParam{" +
  217. "depm=" + Arrays.toString(depm) +
  218. ", sttm=" + sttm +
  219. ", entm=" + entm +
  220. ", adCode='" + adCode + '\'' +
  221. ", timeType='" + timeType + '\'' +
  222. ", pageNum=" + pageNum +
  223. ", pageSize=" + pageSize +
  224. ", orderBy='" + orderBy + '\'' +
  225. ", count=" + count +
  226. ", offset='" + offset + '\'' +
  227. ", provincialLevel='" + provincialLevel + '\'' +
  228. ", orgType='" + orgType + '\'' +
  229. ", isAgree='" + isAgree + '\'' +
  230. ", comment='" + comment + '\'' +
  231. ", isSys='" + isSys + '\'' +
  232. ", endTime='" + endTime + '\'' +
  233. ", startTime='" + startTime + '\'' +
  234. ", hasVedio='" + hasVedio + '\'' +
  235. ", leadDep='" + leadDep + '\'' +
  236. ", orgNm='" + orgNm + '\'' +
  237. ", ifCasePblm='" + ifCasePblm + '\'' +
  238. '}';
  239. }
  240. }