f9779432c843fb2646a2a043c1e79cfbcc82ac09.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. /**
  6. * Created by 61618 on 2019/4/15.
  7. */
  8. public class EmptprjPadMapInfoParam extends PageParam {
  9. @ApiModelProperty(value = "人员id,必填", notes = "人员id", required = true)
  10. private String persGuid;
  11. @ApiModelProperty(value = "1-18年/2-19年/3-复查/4-计划外/空-全部")
  12. private String status;//18年/19年/复查/计划外
  13. private String adCode;
  14. @ApiModelProperty(value = "项目类型 0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项", name = "ptype")
  15. private String ptype;
  16. @ApiModelProperty(value = "名称", name = "nm")
  17. private String nm;
  18. private Double maxLgtd;
  19. private Double minLgtd;
  20. private Double maxLttd;
  21. private Double minLttd;
  22. @ApiModelProperty(value = "最大高德经度")
  23. private Double maxcenterXGd;
  24. @ApiModelProperty(value = "最小高德经度")
  25. private Double mincenterXGd;
  26. @ApiModelProperty(value = "最大高德纬度")
  27. private Double maxcenterYGd;
  28. @ApiModelProperty(value = "最小高德纬度")
  29. private Double mincenterYGd;
  30. @ApiModelProperty(value = "督查状态-0:未督查1督查中;2:已督查", name = "rgstrStatus")
  31. private String rgstrStatus;//督查状态
  32. @ApiModelProperty(value = "重点工程类型-1:重点工程运行情况;2:重点工程建设情况", name = "engSta")
  33. private String engSta;
  34. public String getEngSta() {
  35. return engSta;
  36. }
  37. public void setEngSta(String engSta) {
  38. this.engSta = engSta;
  39. }
  40. public Double getMaxcenterXGd() {
  41. return maxcenterXGd;
  42. }
  43. public void setMaxcenterXGd(Double maxcenterXGd) {
  44. this.maxcenterXGd = maxcenterXGd;
  45. }
  46. public Double getMincenterXGd() {
  47. return mincenterXGd;
  48. }
  49. public void setMincenterXGd(Double mincenterXGd) {
  50. this.mincenterXGd = mincenterXGd;
  51. }
  52. public Double getMaxcenterYGd() {
  53. return maxcenterYGd;
  54. }
  55. public void setMaxcenterYGd(Double maxcenterYGd) {
  56. this.maxcenterYGd = maxcenterYGd;
  57. }
  58. public Double getMincenterYGd() {
  59. return mincenterYGd;
  60. }
  61. public void setMincenterYGd(Double mincenterYGd) {
  62. this.mincenterYGd = mincenterYGd;
  63. }
  64. public String getPersGuid() {
  65. return persGuid;
  66. }
  67. public void setPersGuid(String persGuid) {
  68. this.persGuid = persGuid;
  69. }
  70. public String getRgstrStatus() {
  71. return rgstrStatus;
  72. }
  73. public void setRgstrStatus(String rgstrStatus) {
  74. this.rgstrStatus = rgstrStatus;
  75. }
  76. public Double getMaxLgtd() {
  77. return maxLgtd;
  78. }
  79. public void setMaxLgtd(Double maxLgtd) {
  80. this.maxLgtd = maxLgtd;
  81. }
  82. public Double getMinLgtd() {
  83. return minLgtd;
  84. }
  85. public void setMinLgtd(Double minLgtd) {
  86. this.minLgtd = minLgtd;
  87. }
  88. public Double getMaxLttd() {
  89. return maxLttd;
  90. }
  91. public void setMaxLttd(Double maxLttd) {
  92. this.maxLttd = maxLttd;
  93. }
  94. public Double getMinLttd() {
  95. return minLttd;
  96. }
  97. public void setMinLttd(Double minLttd) {
  98. this.minLttd = minLttd;
  99. }
  100. public String getStatus() {
  101. return status;
  102. }
  103. public void setStatus(String status) {
  104. this.status = status;
  105. }
  106. public String getAdCode() {
  107. return adCode;
  108. }
  109. public void setAdCode(String adCode) {
  110. this.adCode = adCode;
  111. }
  112. public String getPtype() {
  113. return ptype;
  114. }
  115. public void setPtype(String ptype) {
  116. this.ptype = ptype;
  117. }
  118. public String getNm() {
  119. return nm;
  120. }
  121. public void setNm(String nm) {
  122. this.nm = nm;
  123. }
  124. }