| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- package cn.com.goldenwater.dcproj.dto;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by lhc on 2019-2-20.
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspBaseDto implements Serializable {
- public BisInspBaseDto() {
- }
- private String objId;
- private String groupId;
- private String rgstrId;
- @ApiModelProperty(value = "公用-编码")
- private String code;//编码
- @ApiModelProperty(value = "公用-名称")
- private String nm;//名称
- @ApiModelProperty(value = "公用-各种类型")
- private String type;//类型
- @ApiModelProperty(value = "公用-高德经度")
- private Double lgtd;
- @ApiModelProperty(value = "公用-高德纬度")
- private Double lttd;
- @ApiModelProperty(value = "公用-经度")
- private Double lgtdPc;
- @ApiModelProperty(value = "公用-纬度")
- private Double lttdPc;
- @ApiModelProperty("基本信息编码")
- private String baseCode;
- @ApiModelProperty(value = "公用-督查状态")
- private String state;
- private String locat;//位置
- private String calType;//督查对象类型
- private String status;
- @ApiModelProperty(value = "公用-历史是否督查 1是")
- private String hstInsp;//历史是否督查(现在只有水库)
- private String engSta;
- @ApiModelProperty(value = "水库总库容")
- private Double totCap;
- @ApiModelProperty(value = "水库坝高")
- private Double damSizeHig;
- @ApiModelProperty(value = "水库挡水主坝类型按材料分")
- private String damTypeMat;
- @ApiModelProperty(value = "水库挡水主坝类型按结构分")
- private String damTypeStr;
- @ApiModelProperty(value = "水库登记号")
- private String regCode;
- // @ApiModelProperty(value = "饮水工程类型 1-城镇管网延伸 2-联村 3-单村")
- // private String engType;
- @ApiModelProperty(value = "水毁工程类型")
- private String objType;
- @ApiModelProperty(value = "地下水建井类型")
- private String bwsttp;
- @ApiModelProperty(value = "地下水管理单位")
- private String mnun;
- @ApiModelProperty(value = "水闸工程规模")
- private String engScal;
- @ApiModelProperty(value = "取水口水源类型 1-河流2-湖泊-3水库,取水方式是type字段1-自流2-抽提")
- private String wsType;
- @ApiModelProperty(value = "取水口取水单位")
- private String admName;
- @ApiModelProperty(value = "水文站管理单位")
- private String admauth;
- @ApiModelProperty(value = "水源地代码")
- private String swhsCode;
- @ApiModelProperty(value = "行政村级别")
- private String adGrad;
- @ApiModelProperty("取用水户中取水口编码")
- private String wintCode;
- public String getWintCode() {
- return wintCode;
- }
- public void setWintCode(String wintCode) {
- this.wintCode = wintCode;
- }
- public String getBaseCode() {
- return baseCode;
- }
- public void setBaseCode(String baseCode) {
- this.baseCode = baseCode;
- }
- public String getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- public String getAdmName() {
- return admName;
- }
- public void setAdmName(String admName) {
- this.admName = admName;
- }
- public String getEngScal() {
- return engScal;
- }
- public void setEngScal(String engScal) {
- this.engScal = engScal;
- }
- public String getWsType() {
- return wsType;
- }
- public void setWsType(String wsType) {
- this.wsType = wsType;
- }
- public String getAdmauth() {
- return admauth;
- }
- public void setAdmauth(String admauth) {
- this.admauth = admauth;
- }
- public String getSwhsCode() {
- return swhsCode;
- }
- public void setSwhsCode(String swhsCode) {
- this.swhsCode = swhsCode;
- }
- public String getBwsttp() {
- return bwsttp;
- }
- public void setBwsttp(String bwsttp) {
- this.bwsttp = bwsttp;
- }
- public String getMnun() {
- return mnun;
- }
- public void setMnun(String mnun) {
- this.mnun = mnun;
- }
- public String getObjType() {
- return objType;
- }
- public void setObjType(String objType) {
- this.objType = objType;
- }
- public Double getTotCap() {
- return totCap;
- }
- public void setTotCap(Double totCap) {
- this.totCap = totCap;
- }
- public Double getDamSizeHig() {
- return damSizeHig;
- }
- public void setDamSizeHig(Double damSizeHig) {
- this.damSizeHig = damSizeHig;
- }
- public String getDamTypeMat() {
- return damTypeMat;
- }
- public void setDamTypeMat(String damTypeMat) {
- this.damTypeMat = damTypeMat;
- }
- public String getDamTypeStr() {
- return damTypeStr;
- }
- public void setDamTypeStr(String damTypeStr) {
- this.damTypeStr = damTypeStr;
- }
- public String getRegCode() {
- return regCode;
- }
- public void setRegCode(String regCode) {
- this.regCode = regCode;
- }
- public String getEngSta() {
- return engSta;
- }
- public void setEngSta(String engSta) {
- this.engSta = engSta;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getHstInsp() {
- return hstInsp;
- }
- public void setHstInsp(String hstInsp) {
- this.hstInsp = hstInsp;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public String getLocat() {
- return locat;
- }
- public void setLocat(String locat) {
- this.locat = locat;
- }
- public String getCalType() {
- return calType;
- }
- public void setCalType(String calType) {
- this.calType = calType;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- @Override
- public String toString() {
- return "BisInspBaseDto{" +
- "code='" + code + '\'' +
- ", nm='" + nm + '\'' +
- ", type='" + type + '\'' +
- ", lgtd=" + lgtd +
- ", lttd=" + lttd +
- ", lgtdPc=" + lgtdPc +
- ", lttdPc=" + lttdPc +
- ", state='" + state + '\'' +
- ", locat='" + locat + '\'' +
- ", calType='" + calType + '\'' +
- ", status='" + status + '\'' +
- '}';
- }
- }
|