| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- 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;
- /**
- * AttSwhsBaseCrrctParam
- *
- * @author lune
- * @date 2019-8-7
- */
- public class AttSwhsBaseCrrctParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("地表水水源地代码")
- private String swhsCode;
- @ApiModelProperty("地表水水源地名称")
- private String swhsName;
- @ApiModelProperty("地表水水源地经度")
- private Double swhsLong;
- @ApiModelProperty("地表水水源地纬度")
- private Double swhsLat;
- @ApiModelProperty("地表水水源地所属行政区划编码")
- private String adCode;
- @ApiModelProperty("地表水水源地所在位置")
- private String swhsLoc;
- @ApiModelProperty("取水水源类型--水库 1湖泊 2河流 3其他 9")
- private String wainWasoType;
- @ApiModelProperty("水面面积km2")
- private Double watArea;
- @ApiModelProperty("取水口数量")
- private Long wainNum;
- @ApiModelProperty("主要取水用途--城乡生活 1城镇生活 2乡村生活 3")
- private String wainUse;
- @ApiModelProperty("供水对象类型分为工业、生活、公共、混合等类型")
- private String wasuObjType;
- @ApiModelProperty("主要供水城镇名称1")
- private String wasuTownName;
- @ApiModelProperty("主要供水城镇名称2")
- private String wasuTownName2;
- @ApiModelProperty("主要供水城镇名称3")
- private String wasuTownName3;
- @ApiModelProperty("设计年取水量万m3")
- private Double desAnnWain;
- @ApiModelProperty("设计年供水人口万人")
- private Double desAnnWasuPop;
- @ApiModelProperty("投入运行年")
- private String runYear;
- @ApiModelProperty("取水河流名称")
- private String wintRvName;
- @ApiModelProperty("取水湖泊名称")
- private String wintLakeName;
- @ApiModelProperty("取水水库名称")
- private String wintRsName;
- @ApiModelProperty("水质目标“1”表示Ⅰ类水质目标,“2”表示Ⅱ类水质目标,“3”表示Ⅲ类水质目标,“4”表示Ⅳ类水质目标,“5”表示Ⅴ类水质目标,“6”表示劣Ⅴ类水质目标。")
- private String waquGoal;
- @ApiModelProperty("水源地水质是否监测--1:是;2:否")
- private String ifMonWqua;
- @ApiModelProperty("水源地现状-水质类别“1”表示Ⅰ类水质目标,“2”表示Ⅱ类水质目标,“3”表示Ⅲ类水质目标,“4”表示Ⅳ类水质目标,“5”表示Ⅴ类水质目标,“6”表示劣Ⅴ类水质目标。")
- private String wquaCat;
- @ApiModelProperty("水源地水质-是否达标--1:是;2:否")
- private String ifWquaUptoSta;
- @ApiModelProperty("是否划分水源保护区--1:是;2:否")
- private String ifWsProt;
- @ApiModelProperty("一级保护区水域面积(km2)")
- private Double watArea1stProt;
- @ApiModelProperty("一级保护区陆域面积(km2)")
- private Double landArea1stProt;
- @ApiModelProperty("二级保护区水域面积(km2)")
- private Double watArea2ndProt;
- @ApiModelProperty("二级保护区陆域面积(km2)")
- private Double landArea2ndProt;
- @ApiModelProperty("准保护区面积(km2)")
- private Double qusProt;
- @ApiModelProperty("管理单位名称")
- private String insName;
- @ApiModelProperty("管理单位所属行业")
- private String tra;
- @ApiModelProperty("人员id")
- private String persId;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("记录生效时间")
- private Date effDate;
- @ApiModelProperty("记录失效时间")
- private Date exprDate;
- @ApiModelProperty("地表水水源地经度--高德")
- private Double swhsLongGd;
- @ApiModelProperty("地表水水源地纬度--高德")
- private Double swhsLatGd;
- @ApiModelProperty("显示等级")
- private String displayLevel;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("更新时间")
- private Date upTm;
- public AttSwhsBaseCrrctParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSwhsCode() {
- return swhsCode;
- }
- public void setSwhsCode(String swhsCode) {
- this.swhsCode = swhsCode;
- }
- public String getSwhsName() {
- return swhsName;
- }
- public void setSwhsName(String swhsName) {
- this.swhsName = swhsName;
- }
- public Double getSwhsLong() {
- return swhsLong;
- }
- public void setSwhsLong(Double swhsLong) {
- this.swhsLong = swhsLong;
- }
- public Double getSwhsLat() {
- return swhsLat;
- }
- public void setSwhsLat(Double swhsLat) {
- this.swhsLat = swhsLat;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getSwhsLoc() {
- return swhsLoc;
- }
- public void setSwhsLoc(String swhsLoc) {
- this.swhsLoc = swhsLoc;
- }
- public String getWainWasoType() {
- return wainWasoType;
- }
- public void setWainWasoType(String wainWasoType) {
- this.wainWasoType = wainWasoType;
- }
- public Double getWatArea() {
- return watArea;
- }
- public void setWatArea(Double watArea) {
- this.watArea = watArea;
- }
- public Long getWainNum() {
- return wainNum;
- }
- public void setWainNum(Long wainNum) {
- this.wainNum = wainNum;
- }
- public String getWainUse() {
- return wainUse;
- }
- public void setWainUse(String wainUse) {
- this.wainUse = wainUse;
- }
- public String getWasuObjType() {
- return wasuObjType;
- }
- public void setWasuObjType(String wasuObjType) {
- this.wasuObjType = wasuObjType;
- }
- public String getWasuTownName() {
- return wasuTownName;
- }
- public void setWasuTownName(String wasuTownName) {
- this.wasuTownName = wasuTownName;
- }
- public String getWasuTownName2() {
- return wasuTownName2;
- }
- public void setWasuTownName2(String wasuTownName2) {
- this.wasuTownName2 = wasuTownName2;
- }
- public String getWasuTownName3() {
- return wasuTownName3;
- }
- public void setWasuTownName3(String wasuTownName3) {
- this.wasuTownName3 = wasuTownName3;
- }
- public Double getDesAnnWain() {
- return desAnnWain;
- }
- public void setDesAnnWain(Double desAnnWain) {
- this.desAnnWain = desAnnWain;
- }
- public Double getDesAnnWasuPop() {
- return desAnnWasuPop;
- }
- public void setDesAnnWasuPop(Double desAnnWasuPop) {
- this.desAnnWasuPop = desAnnWasuPop;
- }
- public String getRunYear() {
- return runYear;
- }
- public void setRunYear(String runYear) {
- this.runYear = runYear;
- }
- public String getWintRvName() {
- return wintRvName;
- }
- public void setWintRvName(String wintRvName) {
- this.wintRvName = wintRvName;
- }
- public String getWintLakeName() {
- return wintLakeName;
- }
- public void setWintLakeName(String wintLakeName) {
- this.wintLakeName = wintLakeName;
- }
- public String getWintRsName() {
- return wintRsName;
- }
- public void setWintRsName(String wintRsName) {
- this.wintRsName = wintRsName;
- }
- public String getWaquGoal() {
- return waquGoal;
- }
- public void setWaquGoal(String waquGoal) {
- this.waquGoal = waquGoal;
- }
- public String getIfMonWqua() {
- return ifMonWqua;
- }
- public void setIfMonWqua(String ifMonWqua) {
- this.ifMonWqua = ifMonWqua;
- }
- public String getWquaCat() {
- return wquaCat;
- }
- public void setWquaCat(String wquaCat) {
- this.wquaCat = wquaCat;
- }
- public String getIfWquaUptoSta() {
- return ifWquaUptoSta;
- }
- public void setIfWquaUptoSta(String ifWquaUptoSta) {
- this.ifWquaUptoSta = ifWquaUptoSta;
- }
- public String getIfWsProt() {
- return ifWsProt;
- }
- public void setIfWsProt(String ifWsProt) {
- this.ifWsProt = ifWsProt;
- }
- public Double getWatArea1stProt() {
- return watArea1stProt;
- }
- public void setWatArea1stProt(Double watArea1stProt) {
- this.watArea1stProt = watArea1stProt;
- }
- public Double getLandArea1stProt() {
- return landArea1stProt;
- }
- public void setLandArea1stProt(Double landArea1stProt) {
- this.landArea1stProt = landArea1stProt;
- }
- public Double getWatArea2ndProt() {
- return watArea2ndProt;
- }
- public void setWatArea2ndProt(Double watArea2ndProt) {
- this.watArea2ndProt = watArea2ndProt;
- }
- public Double getLandArea2ndProt() {
- return landArea2ndProt;
- }
- public void setLandArea2ndProt(Double landArea2ndProt) {
- this.landArea2ndProt = landArea2ndProt;
- }
- public Double getQusProt() {
- return qusProt;
- }
- public void setQusProt(Double qusProt) {
- this.qusProt = qusProt;
- }
- public String getInsName() {
- return insName;
- }
- public void setInsName(String insName) {
- this.insName = insName;
- }
- public String getTra() {
- return tra;
- }
- public void setTra(String tra) {
- this.tra = tra;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- 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;
- }
- public Double getSwhsLongGd() {
- return swhsLongGd;
- }
- public void setSwhsLongGd(Double swhsLongGd) {
- this.swhsLongGd = swhsLongGd;
- }
- public Double getSwhsLatGd() {
- return swhsLatGd;
- }
- public void setSwhsLatGd(Double swhsLatGd) {
- this.swhsLatGd = swhsLatGd;
- }
- public String getDisplayLevel() {
- return displayLevel;
- }
- public void setDisplayLevel(String displayLevel) {
- this.displayLevel = displayLevel;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- }
|