| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * AttBasBaseParam
- *
- * @author lune
- * @date 2019-7-30
- */
- public class AttBasBaseParam extends PageParam implements Serializable {
- @ApiModelProperty("流域代码")
- private String basCode;
- @ApiModelProperty("流域名称")
- private String basName;
- @ApiModelProperty("跨界类型")
- private String crOverType;
- @ApiModelProperty("流域所属行政区")
- private String basAdName;
- @ApiModelProperty("流域等级")
- private String basGrad;
- @ApiModelProperty("流域面积")
- private Double basArea;
- @ApiModelProperty("多年平均降水深")
- private Double meaAnnPrec;
- @ApiModelProperty("多年平均径流深")
- private Double meaAnnDept;
- @ApiModelProperty("多年平均径流量")
- private Double meaAnnRuof;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("记录生效时间")
- private Date effDate;
- @ApiModelProperty("记录失效时间")
- private Date exprDate;
- public AttBasBaseParam() {
- }
- public String getBasCode() {
- return basCode;
- }
- public void setBasCode(String basCode) {
- this.basCode = basCode;
- }
- public String getBasName() {
- return basName;
- }
- public void setBasName(String basName) {
- this.basName = basName;
- }
- public String getCrOverType() {
- return crOverType;
- }
- public void setCrOverType(String crOverType) {
- this.crOverType = crOverType;
- }
- public String getBasAdName() {
- return basAdName;
- }
- public void setBasAdName(String basAdName) {
- this.basAdName = basAdName;
- }
- public String getBasGrad() {
- return basGrad;
- }
- public void setBasGrad(String basGrad) {
- this.basGrad = basGrad;
- }
- public Double getBasArea() {
- return basArea;
- }
- public void setBasArea(Double basArea) {
- this.basArea = basArea;
- }
- public Double getMeaAnnPrec() {
- return meaAnnPrec;
- }
- public void setMeaAnnPrec(Double meaAnnPrec) {
- this.meaAnnPrec = meaAnnPrec;
- }
- public Double getMeaAnnDept() {
- return meaAnnDept;
- }
- public void setMeaAnnDept(Double meaAnnDept) {
- this.meaAnnDept = meaAnnDept;
- }
- public Double getMeaAnnRuof() {
- return meaAnnRuof;
- }
- public void setMeaAnnRuof(Double meaAnnRuof) {
- this.meaAnnRuof = meaAnnRuof;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Date getEffDate() {
- return effDate;
- }
- public void setEffDate(Date effDate) {
- this.effDate = effDate;
- }
- public Date getExprDate() {
- return exprDate;
- }
- public void setExprDate(Date exprDate) {
- this.exprDate = exprDate;
- }
- }
|