8f0d73d09b520d5819fa5f11b4967a53acbb7706.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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 RsStatusInfoParam extends PageParam {
  9. @ApiModelProperty(value = "人员id,必填")
  10. private String persGuid;
  11. private String rsName;
  12. private String engScal;
  13. @ApiModelProperty(value = "1-18年/2-19年/3-复查/4-计划外/空-全部")
  14. private String status;//18年/19年/复查/计划外
  15. private String adCode;
  16. private Double maxLgtd;
  17. private Double minLgtd;
  18. private Double maxLttd;
  19. private Double minLttd;
  20. @ApiModelProperty(value = "最大高德经度")
  21. private Double maxcenterXGd;
  22. @ApiModelProperty(value = "最小高德经度")
  23. private Double mincenterXGd;
  24. @ApiModelProperty(value = "最大高德纬度")
  25. private Double maxcenterYGd;
  26. @ApiModelProperty(value = "最小高德纬度")
  27. private Double mincenterYGd;
  28. @ApiModelProperty(value = "最大库容")
  29. private Double totCap;
  30. private String rsvrState;//督查状态
  31. @ApiModelProperty(value = "显示等级")
  32. private String displayLevel;
  33. @ApiParam(name = "是否导出")
  34. private String isExport;
  35. public String getIsExport() {
  36. return isExport;
  37. }
  38. public void setIsExport(String isExport) {
  39. this.isExport = isExport;
  40. }
  41. public String getDisplayLevel() {
  42. return displayLevel;
  43. }
  44. public void setDisplayLevel(String displayLevel) {
  45. this.displayLevel = displayLevel;
  46. }
  47. public Double getMaxcenterXGd() {
  48. return maxcenterXGd;
  49. }
  50. public void setMaxcenterXGd(Double maxcenterXGd) {
  51. this.maxcenterXGd = maxcenterXGd;
  52. }
  53. public Double getMincenterXGd() {
  54. return mincenterXGd;
  55. }
  56. public void setMincenterXGd(Double mincenterXGd) {
  57. this.mincenterXGd = mincenterXGd;
  58. }
  59. public Double getMaxcenterYGd() {
  60. return maxcenterYGd;
  61. }
  62. public void setMaxcenterYGd(Double maxcenterYGd) {
  63. this.maxcenterYGd = maxcenterYGd;
  64. }
  65. public Double getMincenterYGd() {
  66. return mincenterYGd;
  67. }
  68. public void setMincenterYGd(Double mincenterYGd) {
  69. this.mincenterYGd = mincenterYGd;
  70. }
  71. public String getPersGuid() {
  72. return persGuid;
  73. }
  74. public void setPersGuid(String persGuid) {
  75. this.persGuid = persGuid;
  76. }
  77. public String getRsvrState() {
  78. return rsvrState;
  79. }
  80. public void setRsvrState(String rsvrState) {
  81. this.rsvrState = rsvrState;
  82. }
  83. public Double getMaxLgtd() {
  84. return maxLgtd;
  85. }
  86. public void setMaxLgtd(Double maxLgtd) {
  87. this.maxLgtd = maxLgtd;
  88. }
  89. public Double getMinLgtd() {
  90. return minLgtd;
  91. }
  92. public void setMinLgtd(Double minLgtd) {
  93. this.minLgtd = minLgtd;
  94. }
  95. public Double getMaxLttd() {
  96. return maxLttd;
  97. }
  98. public void setMaxLttd(Double maxLttd) {
  99. this.maxLttd = maxLttd;
  100. }
  101. public Double getMinLttd() {
  102. return minLttd;
  103. }
  104. public void setMinLttd(Double minLttd) {
  105. this.minLttd = minLttd;
  106. }
  107. public Double getTotCap() {
  108. return totCap;
  109. }
  110. public void setTotCap(Double totCap) {
  111. this.totCap = totCap;
  112. }
  113. public String getRsName() {
  114. return rsName;
  115. }
  116. public void setRsName(String rsName) {
  117. this.rsName = rsName;
  118. }
  119. public String getEngScal() {
  120. return engScal;
  121. }
  122. public void setEngScal(String engScal) {
  123. this.engScal = engScal;
  124. }
  125. public String getStatus() {
  126. return status;
  127. }
  128. public void setStatus(String status) {
  129. this.status = status;
  130. }
  131. public String getAdCode() {
  132. return adCode;
  133. }
  134. public void setAdCode(String adCode) {
  135. this.adCode = adCode;
  136. }
  137. @Override
  138. public String toString() {
  139. return "RsStatusInfoParam{" +
  140. "rsName='" + rsName + '\'' +
  141. ", engScal='" + engScal + '\'' +
  142. ", status='" + status + '\'' +
  143. ", adCode='" + adCode + '\'' +
  144. '}';
  145. }
  146. }