db7bf35da3a00db0a15648fae11c74b05e4c9b9a.svn-base 3.5 KB

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