package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; import io.swagger.annotations.ApiModelProperty; /** * AttWtgtBaseParam * * @author lhc * @date 2020-9-18 */ public class AttWtgtBaseParam extends PageParam implements Serializable { // 主键ID @ApiParam(name = "主键ID") @ApiModelProperty(value = "主键ID", name = "id") private String id; // 单位名称 @ApiParam(name = "单位名称") @ApiModelProperty(value = "单位名称", name = "depName") private String depName; // 所在地行政区编码 @ApiParam(name = "所在地行政区编码") @ApiModelProperty(value = "所在地行政区编码", name = "adCode") private String adCode; // 所在地行政区 @ApiParam(name = "所在地行政区") @ApiModelProperty(value = "所在地行政区", name = "adName") private String adName; // 取水许可证号 @ApiParam(name = "取水许可证号") @ApiModelProperty(value = "取水许可证号", name = "wintCode") private String wintCode; // 联系人 @ApiParam(name = "联系人") @ApiModelProperty(value = "联系人", name = "depPers") private String depPers; // 联系电话 @ApiParam(name = "联系电话") @ApiModelProperty(value = "联系电话", name = "depPersTel") private String depPersTel; // 单位地址 @ApiParam(name = "单位地址") @ApiModelProperty(value = "单位地址", name = "loc") private String loc; // 经度 @ApiParam(name = "经度") @ApiModelProperty(value = "经度", name = "centerX") private Double centerX; // 纬度 @ApiParam(name = "纬度") @ApiModelProperty(value = "纬度", name = "centerY") private Double centerY; // 高德经度 @ApiParam(name = "高德经度") @ApiModelProperty(value = "高德经度", name = "gdX") private Double gdX; // 高德纬度 @ApiParam(name = "高德纬度") @ApiModelProperty(value = "高德纬度", name = "gdY") private Double gdY; // 创建时间 @ApiParam(name = "创建时间") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiParam(name = "修改时间") @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiParam(name = "数据状态(0:正常;9:删除)") @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; public AttWtgtBaseParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getDepName() { return depName; } public void setDepName(String depName) { this.depName = depName; } 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 getWintCode() { return wintCode; } public void setWintCode(String wintCode) { this.wintCode = wintCode; } public String getDepPers() { return depPers; } public void setDepPers(String depPers) { this.depPers = depPers; } public String getDepPersTel() { return depPersTel; } public void setDepPersTel(String depPersTel) { this.depPersTel = depPersTel; } public String getLoc() { return loc; } public void setLoc(String loc) { this.loc = loc; } 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; } }