| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:AttHystBase
- *
- * @author lune
- * @date 2021-3-10
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class AttHystBase extends BaseBean implements Serializable {
- @ApiModelProperty(value="统计代码", position = 1)
- private String statisCode;
- @ApiModelProperty(value="主键ID(统计代码)", position = 2)
- private String id;
- @ApiModelProperty(value="电站名称", position = 3)
- private String hystName;
- @ApiModelProperty(value="电站联系人姓名", position = 4)
- private String linkMan;
- @ApiModelProperty(value="联系人电话", position = 5)
- private String linkTel;
- @ApiModelProperty(value="行政区编码", position = 6)
- private String adCode;
- @ApiModelProperty(value="行政区名称", position = 7)
- private String adName;
- @ApiModelProperty(value="行政村名(详细地址)", position = 8)
- private String hystSite;
- @ApiModelProperty(value="取水口经度", position = 9)
- private Double centerX;
- @ApiModelProperty(value="取水口纬度", position = 10)
- private Double centerY;
- @ApiModelProperty(value="取水口经度-高德", position = 9)
- private Double gdX;
- @ApiModelProperty(value="取水口纬度-高德", position = 10)
- private Double gdY;
- @ApiModelProperty(value="厂房经度", position = 11)
- private Double hystLong;
- @ApiModelProperty(value="厂房纬度", position = 12)
- private Double hystLat;
- @ApiModelProperty(value="厂房经度-高德", position = 11)
- private Double hystGdX;
- @ApiModelProperty(value="厂房纬度-高德", position = 12)
- private Double hystGdY;
- @ApiModelProperty(value="所在河流", position = 13)
- private String rvName;
- @ApiModelProperty(value="投产时间(年月)", position = 14)
- private String compDate;
- @ApiModelProperty(value="所有制性质(1:民营;2:集体;3:国有;4:股份制;)", position = 15)
- private String ownerType;
- @ApiModelProperty(value="开发方式(1:引水式;2:混合式;3:坝后式;4:河床式;5:其他-工农业渠道上;6:其他-接上一级尾水)", position = 16)
- private String exptType;
- @ApiModelProperty(value="装机容量", position = 17)
- private String insCap;
- @ApiModelProperty(value="坝高", position = 18)
- private String damHeig;
- @ApiModelProperty(value="库容", position = 19)
- private String totCap;
- @ApiModelProperty(value="电站水库是否注册登记(1:是;2:否;)", position = 20)
- private String hystIsReg;
- @ApiModelProperty(value="电站水库注册登记号", position = 21)
- private String regNo;
- @ApiModelProperty(value="大坝是否已开展安全鉴定(1:是;2:否;)", position = 22)
- private String isSafety;
- @ApiModelProperty(value="生态流量核定值(m3/s)", position = 23)
- private String zlgyFlow;
- @ApiModelProperty(value="检查类型/清理整改分类(1:整改类;2:立即退出类;3:其他;4:保留类5:期限退出类)", position = 24)
- private String exmnType;
- @ApiModelProperty(value="创建时间", position = 25)
- private Date intm;
- @ApiModelProperty(value="最后修改时间", position = 26)
- private Date uptm;
- @ApiModelProperty(value="备注", position = 27)
- private String note;
- public AttHystBase() {
- }
- public String getStatisCode() {
- return statisCode;
- }
- public void setStatisCode(String statisCode) {
- this.statisCode = statisCode;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getHystName() {
- return hystName;
- }
- public void setHystName(String hystName) {
- this.hystName = hystName;
- }
- public String getLinkMan() {
- return linkMan;
- }
- public void setLinkMan(String linkMan) {
- this.linkMan = linkMan;
- }
- public String getLinkTel() {
- return linkTel;
- }
- public void setLinkTel(String linkTel) {
- this.linkTel = linkTel;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getHystSite() {
- return hystSite;
- }
- public void setHystSite(String hystSite) {
- this.hystSite = hystSite;
- }
- 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 Double getHystLong() {
- return hystLong;
- }
- public void setHystLong(Double hystLong) {
- this.hystLong = hystLong;
- }
- public Double getHystLat() {
- return hystLat;
- }
- public void setHystLat(Double hystLat) {
- this.hystLat = hystLat;
- }
- public String getRvName() {
- return rvName;
- }
- public void setRvName(String rvName) {
- this.rvName = rvName;
- }
- public String getCompDate() {
- return compDate;
- }
- public void setCompDate(String compDate) {
- this.compDate = compDate;
- }
- public String getOwnerType() {
- return ownerType;
- }
- public void setOwnerType(String ownerType) {
- this.ownerType = ownerType;
- }
- public String getExptType() {
- return exptType;
- }
- public void setExptType(String exptType) {
- this.exptType = exptType;
- }
- public String getInsCap() {
- return insCap;
- }
- public void setInsCap(String insCap) {
- this.insCap = insCap;
- }
- public String getDamHeig() {
- return damHeig;
- }
- public void setDamHeig(String damHeig) {
- this.damHeig = damHeig;
- }
- public String getTotCap() {
- return totCap;
- }
- public void setTotCap(String totCap) {
- this.totCap = totCap;
- }
- public String getHystIsReg() {
- return hystIsReg;
- }
- public void setHystIsReg(String hystIsReg) {
- this.hystIsReg = hystIsReg;
- }
- public String getRegNo() {
- return regNo;
- }
- public void setRegNo(String regNo) {
- this.regNo = regNo;
- }
- public String getIsSafety() {
- return isSafety;
- }
- public void setIsSafety(String isSafety) {
- this.isSafety = isSafety;
- }
- public String getZlgyFlow() {
- return zlgyFlow;
- }
- public void setZlgyFlow(String zlgyFlow) {
- this.zlgyFlow = zlgyFlow;
- }
- public String getExmnType() {
- return exmnType;
- }
- public void setExmnType(String exmnType) {
- this.exmnType = exmnType;
- }
- 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;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- public Double getHystGdX() {
- return hystGdX;
- }
- public void setHystGdX(Double hystGdX) {
- this.hystGdX = hystGdX;
- }
- public Double getHystGdY() {
- return hystGdY;
- }
- public void setHystGdY(Double hystGdY) {
- this.hystGdY = hystGdY;
- }
- @Override
- public String toString() {
- return "AttHystBase [" + "statisCode=" + statisCode + ", id=" + id + ", hystName=" + hystName + ", linkMan=" + linkMan + ", linkTel=" + linkTel + ", adCode=" + adCode + ", adName=" + adName + ", hystSite=" + hystSite + ", centerX=" + centerX + ", centerY=" + centerY + ", hystLong=" + hystLong + ", hystLat=" + hystLat + ", rvName=" + rvName + ", compDate=" + compDate + ", ownerType=" + ownerType + ", exptType=" + exptType + ", insCap=" + insCap + ", damHeig=" + damHeig + ", totCap=" + totCap + ", hystIsReg=" + hystIsReg + ", regNo=" + regNo + ", isSafety=" + isSafety + ", zlgyFlow=" + zlgyFlow + ", exmnType=" + exmnType + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
- }
- }
|