88bdbb899da73dbc5d90d5f5de4938401cb89657.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttBasBaseParam
  9. *
  10. * @author lune
  11. * @date 2019-7-30
  12. */
  13. public class AttBasBaseParam extends PageParam implements Serializable {
  14. @ApiModelProperty("流域代码")
  15. private String basCode;
  16. @ApiModelProperty("流域名称")
  17. private String basName;
  18. @ApiModelProperty("跨界类型")
  19. private String crOverType;
  20. @ApiModelProperty("流域所属行政区")
  21. private String basAdName;
  22. @ApiModelProperty("流域等级")
  23. private String basGrad;
  24. @ApiModelProperty("流域面积")
  25. private Double basArea;
  26. @ApiModelProperty("多年平均降水深")
  27. private Double meaAnnPrec;
  28. @ApiModelProperty("多年平均径流深")
  29. private Double meaAnnDept;
  30. @ApiModelProperty("多年平均径流量")
  31. private Double meaAnnRuof;
  32. @ApiModelProperty("备注")
  33. private String note;
  34. @ApiModelProperty("记录生效时间")
  35. private Date effDate;
  36. @ApiModelProperty("记录失效时间")
  37. private Date exprDate;
  38. public AttBasBaseParam() {
  39. }
  40. public String getBasCode() {
  41. return basCode;
  42. }
  43. public void setBasCode(String basCode) {
  44. this.basCode = basCode;
  45. }
  46. public String getBasName() {
  47. return basName;
  48. }
  49. public void setBasName(String basName) {
  50. this.basName = basName;
  51. }
  52. public String getCrOverType() {
  53. return crOverType;
  54. }
  55. public void setCrOverType(String crOverType) {
  56. this.crOverType = crOverType;
  57. }
  58. public String getBasAdName() {
  59. return basAdName;
  60. }
  61. public void setBasAdName(String basAdName) {
  62. this.basAdName = basAdName;
  63. }
  64. public String getBasGrad() {
  65. return basGrad;
  66. }
  67. public void setBasGrad(String basGrad) {
  68. this.basGrad = basGrad;
  69. }
  70. public Double getBasArea() {
  71. return basArea;
  72. }
  73. public void setBasArea(Double basArea) {
  74. this.basArea = basArea;
  75. }
  76. public Double getMeaAnnPrec() {
  77. return meaAnnPrec;
  78. }
  79. public void setMeaAnnPrec(Double meaAnnPrec) {
  80. this.meaAnnPrec = meaAnnPrec;
  81. }
  82. public Double getMeaAnnDept() {
  83. return meaAnnDept;
  84. }
  85. public void setMeaAnnDept(Double meaAnnDept) {
  86. this.meaAnnDept = meaAnnDept;
  87. }
  88. public Double getMeaAnnRuof() {
  89. return meaAnnRuof;
  90. }
  91. public void setMeaAnnRuof(Double meaAnnRuof) {
  92. this.meaAnnRuof = meaAnnRuof;
  93. }
  94. public String getNote() {
  95. return note;
  96. }
  97. public void setNote(String note) {
  98. this.note = note;
  99. }
  100. public Date getEffDate() {
  101. return effDate;
  102. }
  103. public void setEffDate(Date effDate) {
  104. this.effDate = effDate;
  105. }
  106. public Date getExprDate() {
  107. return exprDate;
  108. }
  109. public void setExprDate(Date exprDate) {
  110. this.exprDate = exprDate;
  111. }
  112. }