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:AttOtherBase * * @author lune * @date 2019-7-19 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class AttOtherBase extends BaseBean implements Serializable { @ApiModelProperty("主键id") private String id; @ApiModelProperty("项目编号") private String code; @ApiModelProperty("项目名称") private String name; @ApiModelProperty("项目类型") private String type; @ApiModelProperty("所属流域机构") private String admOrg; @ApiModelProperty("行政区编码") private String adCode; @ApiModelProperty("工程详细位置") private String location; @ApiModelProperty("经度") private Double centerX; @ApiModelProperty("纬度") private Double centerY; @ApiModelProperty("高德经度") private Double gdX; @ApiModelProperty("高德纬度") private Double gdY; @ApiModelProperty("创建人") private String persId; @ApiModelProperty("创建时间") private Date intm; @ApiModelProperty("修改时间") private Date uptm; private String adName; private String rgstrId; private String basName; public AttOtherBase() { } public String getBasName() { return basName; } public void setBasName(String basName) { this.basName = basName; } @Override public String getRgstrId() { return rgstrId; } @Override public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getAdmOrg() { return admOrg; } public void setAdmOrg(String admOrg) { this.admOrg = admOrg; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } 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 String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } 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; } @Override public String toString() { return "AttOtherBase [" + "id=" + id + ", code=" + code + ", name=" + name + ", type=" + type + ", admOrg=" + admOrg + ", adCode=" + adCode + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]"; } }