| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspGnrlRgstr
- *
- * @author
- * @date 2021-12-6
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspGnrlRgstr extends BaseBean implements Serializable {
- @ApiModelProperty("ID")
- private String id;
- @ApiModelProperty("督查对象ID")
- private String objId;
- @ApiModelProperty("取水井名称")
- private String nm;
- @ApiModelProperty("所在地行政区编码")
- private String adCode;
- @ApiModelProperty("所在地行政区")
- private String adName;
- @ApiModelProperty("地址")
- private String loc;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("督查状态(0:未督查;1:督查中;2:已督查)")
- private String state;
- @ApiModelProperty("经度")
- private Double centerX;
- @ApiModelProperty("纬度")
- private Double centerY;
- @ApiModelProperty("高德经度")
- private Double gdX;
- @ApiModelProperty("高德纬度")
- private Double gdY;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("督查类别")
- private String type;
- @ApiModelProperty("督查对象标段")
- private String sectName;
- private List<AttGnrlSectBase> attGnrlSectBases;
- public List<AttGnrlSectBase> getAttGnrlSectBases() {
- return attGnrlSectBases;
- }
- public void setAttGnrlSectBases(List<AttGnrlSectBase> attGnrlSectBases) {
- this.attGnrlSectBases = attGnrlSectBases;
- }
- public String getSectName() {
- return sectName;
- }
- public void setSectName(String sectName) {
- this.sectName = sectName;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- 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 getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- 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 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 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspGnrlRgstr [" + "id=" + id + ", objId=" + objId + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", note=" + note + ", state=" + state + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|