384c1fc5d7ac5466034d272be643c1fb9dc3b72d.svn-base 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * Created by jinshui on 2019/7/15.
  6. */
  7. public class GeneralInfoParam extends PageParam {
  8. @ApiModelProperty("分组sql拼接")
  9. private String inIdsSql;
  10. public String getInIdsSql() {
  11. return inIdsSql;
  12. }
  13. public void setInIdsSql(String inIdsSql) {
  14. this.inIdsSql = inIdsSql;
  15. }
  16. private String persId;
  17. private String adCode;
  18. private String name;
  19. private String status;
  20. @ApiModelProperty(value = "pers:人员,rsvr:水库,other:其他")
  21. private String type;
  22. private String objType;
  23. @ApiModelProperty(value = "水文站查询条件")
  24. private String frgrd;
  25. private String lv;
  26. @ApiModelProperty(value = "最大高德经度")
  27. private Double maxcenterXGd;
  28. @ApiModelProperty(value = "最小高德经度")
  29. private Double mincenterXGd;
  30. @ApiModelProperty(value = "最大高德纬度")
  31. private Double maxcenterYGd;
  32. @ApiModelProperty(value = "最小高德纬度")
  33. private Double mincenterYGd;
  34. @ApiModelProperty(value = "省市标志2为省,3为市")
  35. private String adGrad;
  36. @ApiModelProperty("是否导出 1:导出")
  37. private String isExport;
  38. private String engSta;
  39. private Double maxLgtd;
  40. private Double minLgtd;
  41. private Double maxLttd;
  42. private Double minLttd;
  43. @ApiModelProperty("显示等级")
  44. private String displayLevel;
  45. /**
  46. * 查询 时间段 内的 问题
  47. */
  48. private String startTime;
  49. private String endTime;
  50. @ApiModelProperty("1代表督查,2代表稽察。无值标识所有菜单")
  51. private String ownApp;
  52. public GeneralInfoParam() {
  53. }
  54. public String getDisplayLevel() {
  55. return displayLevel;
  56. }
  57. public void setDisplayLevel(String displayLevel) {
  58. this.displayLevel = displayLevel;
  59. }
  60. public Double getMaxLgtd() {
  61. return maxLgtd;
  62. }
  63. public void setMaxLgtd(Double maxLgtd) {
  64. this.maxLgtd = maxLgtd;
  65. }
  66. public Double getMinLgtd() {
  67. return minLgtd;
  68. }
  69. public void setMinLgtd(Double minLgtd) {
  70. this.minLgtd = minLgtd;
  71. }
  72. public Double getMaxLttd() {
  73. return maxLttd;
  74. }
  75. public void setMaxLttd(Double maxLttd) {
  76. this.maxLttd = maxLttd;
  77. }
  78. public Double getMinLttd() {
  79. return minLttd;
  80. }
  81. public void setMinLttd(Double minLttd) {
  82. this.minLttd = minLttd;
  83. }
  84. public String getIsExport() {
  85. return isExport;
  86. }
  87. public void setIsExport(String isExport) {
  88. this.isExport = isExport;
  89. }
  90. public String getEngSta() {
  91. return engSta;
  92. }
  93. public String getAdGrad() {
  94. return adGrad;
  95. }
  96. public void setAdGrad(String adGrad) {
  97. this.adGrad = adGrad;
  98. }
  99. public void setEngSta(String engSta) {
  100. this.engSta = engSta;
  101. }
  102. public Double getMaxcenterXGd() {
  103. return maxcenterXGd;
  104. }
  105. public void setMaxcenterXGd(Double maxcenterXGd) {
  106. this.maxcenterXGd = maxcenterXGd;
  107. }
  108. public Double getMincenterXGd() {
  109. return mincenterXGd;
  110. }
  111. public void setMincenterXGd(Double mincenterXGd) {
  112. this.mincenterXGd = mincenterXGd;
  113. }
  114. public Double getMaxcenterYGd() {
  115. return maxcenterYGd;
  116. }
  117. public void setMaxcenterYGd(Double maxcenterYGd) {
  118. this.maxcenterYGd = maxcenterYGd;
  119. }
  120. public Double getMincenterYGd() {
  121. return mincenterYGd;
  122. }
  123. public void setMincenterYGd(Double mincenterYGd) {
  124. this.mincenterYGd = mincenterYGd;
  125. }
  126. public String getFrgrd() {
  127. return frgrd;
  128. }
  129. public void setFrgrd(String frgrd) {
  130. this.frgrd = frgrd;
  131. }
  132. public String getLv() {
  133. return lv;
  134. }
  135. public void setLv(String lv) {
  136. this.lv = lv;
  137. }
  138. public String getObjType() {
  139. return objType;
  140. }
  141. public void setObjType(String objType) {
  142. this.objType = objType;
  143. }
  144. public String getType() {
  145. return type;
  146. }
  147. public void setType(String type) {
  148. this.type = type;
  149. }
  150. public String getPersId() {
  151. return persId;
  152. }
  153. public void setPersId(String persId) {
  154. this.persId = persId;
  155. }
  156. public String getAdCode() {
  157. return adCode;
  158. }
  159. public void setAdCode(String adCode) {
  160. this.adCode = adCode;
  161. }
  162. public String getName() {
  163. return name;
  164. }
  165. public void setName(String name) {
  166. this.name = name;
  167. }
  168. public String getStatus() {
  169. return status;
  170. }
  171. public void setStatus(String status) {
  172. this.status = status;
  173. }
  174. public String getStartTime() {
  175. return startTime;
  176. }
  177. public void setStartTime(String startTime) {
  178. this.startTime = startTime;
  179. }
  180. public String getEndTime() {
  181. return endTime;
  182. }
  183. public void setEndTime(String endTime) {
  184. this.endTime = endTime;
  185. }
  186. public String getOwnApp() {
  187. return ownApp;
  188. }
  189. public void setOwnApp(String ownApp) {
  190. this.ownApp = ownApp;
  191. }
  192. }