| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:AttWainBase
- *
- * @author lune
- * @date 2019-5-21
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttWainBase extends BaseBean implements Serializable {
- // 单位名称
- @ApiModelProperty("单位名称")
- private String admName;
- // 经度
- @ApiModelProperty("经度")
- private Double centerX;
- // 维度
- @ApiModelProperty("纬度")
- private Double centerY;
- // 引调水工程名称
- @ApiModelProperty("引调水工程名称")
- private String ditrName;
- // 取水许可审批机关
- @ApiModelProperty("取水许可审批机关")
- private String exaDep;
- // 水闸名称
- @ApiModelProperty("水闸名称")
- private String gateName;
- // 是否为引调水工程取水口 1是 0否
- @ApiModelProperty("是否为引调水工程取水口:1是 0否")
- private String ifInt;
- // 有无取水许可证 1有 2无
- @ApiModelProperty(" 有无取水许可证:1有 2无")
- private String ifTakeLic;
- // 是否位于地表水水源地 1是 0否
- @ApiModelProperty("是否位于地表水水源地:1是 0否")
- private String ifWsSur;
- // 湖泊名称
- @ApiModelProperty("湖泊名称")
- private String lakeName;
- // 取水许可监督管理机关
- @ApiModelProperty("取水许可监督管理机关")
- private String permAdmOrg;
- // 行政区划名称
- @ApiModelProperty("行政区划名称")
- private String adName;
- // 河流名称
- @ApiModelProperty("河流名称")
- private String rvName;
- // 取水许可证编号
- @ApiModelProperty("取水许可证编号")
- private String takeLicCode;
- // 所属行业
- @ApiModelProperty("所属行业")
- private String tra;
- // 取水流量m3/s
- @ApiModelProperty("取水流量m3/s")
- private Double wintFlow;
- // 取水量取得方式
- @ApiModelProperty("取水量取得方式")
- private String wintMode;
- // 取水口名称
- @ApiModelProperty("取水口名称")
- private String wintName;
- // 取水口位置
- @ApiModelProperty("取水口位置")
- private String wintPos;
- // 取水方式 (1自流 2抽提)
- @ApiModelProperty("取水方式 (1自流 2抽提)")
- private String wintType;
- // 地表水水源地名称
- @ApiModelProperty
- private String wsName;
- // 水源地类型 1河流 2湖泊 3水库
- @ApiModelProperty("水源地类型:1河流 2湖泊 3水库")
- private Boolean wsType;
- // 高德经度
- @ApiModelProperty("高德经度")
- private Double lgtd;
- // 高德维度
- @ApiModelProperty("高德维度")
- private Double lttd;
- // 行政区划编码
- @ApiModelProperty("行政区划编码")
- private String adCode;
- // 编码
- @ApiModelProperty("编码")
- private String objCode;
- //显示等级
- @ApiModelProperty("显示等级")
- private String displayLevel;
- public AttWainBase() {
- }
- public String getDisplayLevel() {
- return displayLevel;
- }
- public void setDisplayLevel(String displayLevel) {
- this.displayLevel = displayLevel;
- }
- public String getAdmName() {
- return admName;
- }
- public void setAdmName(String admName) {
- this.admName = admName;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public String getDitrName() {
- return ditrName;
- }
- public void setDitrName(String ditrName) {
- this.ditrName = ditrName;
- }
- public String getExaDep() {
- return exaDep;
- }
- public void setExaDep(String exaDep) {
- this.exaDep = exaDep;
- }
- public String getGateName() {
- return gateName;
- }
- public void setGateName(String gateName) {
- this.gateName = gateName;
- }
- public String getIfInt() {
- return ifInt;
- }
- public void setIfInt(String ifInt) {
- this.ifInt = ifInt;
- }
- public String getIfTakeLic() {
- return ifTakeLic;
- }
- public void setIfTakeLic(String ifTakeLic) {
- this.ifTakeLic = ifTakeLic;
- }
- public String getIfWsSur() {
- return ifWsSur;
- }
- public void setIfWsSur(String ifWsSur) {
- this.ifWsSur = ifWsSur;
- }
- public String getLakeName() {
- return lakeName;
- }
- public void setLakeName(String lakeName) {
- this.lakeName = lakeName;
- }
- public String getPermAdmOrg() {
- return permAdmOrg;
- }
- public void setPermAdmOrg(String permAdmOrg) {
- this.permAdmOrg = permAdmOrg;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getRvName() {
- return rvName;
- }
- public void setRvName(String rvName) {
- this.rvName = rvName;
- }
- public String getTakeLicCode() {
- return takeLicCode;
- }
- public void setTakeLicCode(String takeLicCode) {
- this.takeLicCode = takeLicCode;
- }
- public String getTra() {
- return tra;
- }
- public void setTra(String tra) {
- this.tra = tra;
- }
- public Double getWintFlow() {
- return wintFlow;
- }
- public void setWintFlow(Double wintFlow) {
- this.wintFlow = wintFlow;
- }
- public String getWintMode() {
- return wintMode;
- }
- public void setWintMode(String wintMode) {
- this.wintMode = wintMode;
- }
- public String getWintName() {
- return wintName;
- }
- public void setWintName(String wintName) {
- this.wintName = wintName;
- }
- public String getWintPos() {
- return wintPos;
- }
- public void setWintPos(String wintPos) {
- this.wintPos = wintPos;
- }
- public String getWintType() {
- return wintType;
- }
- public void setWintType(String wintType) {
- this.wintType = wintType;
- }
- public String getWsName() {
- return wsName;
- }
- public void setWsName(String wsName) {
- this.wsName = wsName;
- }
- public Boolean getWsType() {
- return wsType;
- }
- public void setWsType(Boolean wsType) {
- this.wsType = wsType;
- }
- 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 getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getObjCode() {
- return objCode;
- }
- public void setObjCode(String objCode) {
- this.objCode = objCode;
- }
- @Override
- public String toString() {
- return "AttWainBase{" +
- "admName='" + admName + '\'' +
- ", centerX=" + centerX +
- ", centerY=" + centerY +
- ", ditrName='" + ditrName + '\'' +
- ", exaDep='" + exaDep + '\'' +
- ", gateName='" + gateName + '\'' +
- ", ifInt='" + ifInt + '\'' +
- ", ifTakeLic='" + ifTakeLic + '\'' +
- ", ifWsSur='" + ifWsSur + '\'' +
- ", lakeName='" + lakeName + '\'' +
- ", permAdmOrg='" + permAdmOrg + '\'' +
- ", adName='" + adName + '\'' +
- ", rvName='" + rvName + '\'' +
- ", takeLicCode='" + takeLicCode + '\'' +
- ", tra='" + tra + '\'' +
- ", wintFlow=" + wintFlow +
- ", wintMode='" + wintMode + '\'' +
- ", wintName='" + wintName + '\'' +
- ", wintPos='" + wintPos + '\'' +
- ", wintType='" + wintType + '\'' +
- ", wsName='" + wsName + '\'' +
- ", wsType=" + wsType +
- ", lgtd=" + lgtd +
- ", lttd=" + lttd +
- ", adCode='" + adCode + '\'' +
- ", objCode='" + objCode + '\'' +
- '}';
- }
- }
|