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; /** * AttGrowBaseParam * * @author lhc * @date 2021-1-22 */ public class AttGrowBaseParam extends PageParam implements Serializable { // 主键ID @ApiParam(name = "主键ID") @ApiModelProperty(value = "主键ID", name = "id") private String id; // 机井编码 @ApiParam(name = "机井编码") @ApiModelProperty(value = "机井编码", name = "wellCode") private String wellCode; // 机井名称 @ApiParam(name = "机井名称") @ApiModelProperty(value = "机井名称", name = "wellName") private String wellName; // 行政区划编码 @ApiParam(name = "行政区划编码") @ApiModelProperty(value = "行政区划编码", name = "adCode") private String adCode; // 行政区划名称 @ApiParam(name = "行政区划名称") @ApiModelProperty(value = "行政区划名称", name = "adName") private String adName; // 联系人 @ApiParam(name = "联系人") @ApiModelProperty(value = "联系人", name = "contact") private String contact; // 联系电话 @ApiParam(name = "联系电话") @ApiModelProperty(value = "联系电话", name = "contactTel") private String contactTel; // 成井时间 @ApiParam(name = "成井时间") @ApiModelProperty(value = "成井时间", name = "wellTime") private Date wellTime; // 井深 @ApiParam(name = "井深") @ApiModelProperty(value = "井深", name = "wellHeight") private Double wellHeight; // 机井类型 @ApiParam(name = "机井类型") @ApiModelProperty(value = "机井类型", name = "wellType") private String wellType; // 取水许可证编号 @ApiParam(name = "取水许可证编号") @ApiModelProperty(value = "取水许可证编号", name = "cardNum") private String cardNum; // 一井一档编号 @ApiParam(name = "一井一档编号") @ApiModelProperty(value = "一井一档编号", name = "filesNum") private String filesNum; // 经度 @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 = "persId") private String persId; // 创建时间 @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 AttGrowBaseParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getWellCode() { return wellCode; } public void setWellCode(String wellCode) { this.wellCode = wellCode; } public String getWellName() { return wellName; } public void setWellName(String wellName) { this.wellName = wellName; } 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 getContact() { return contact; } public void setContact(String contact) { this.contact = contact; } public String getContactTel() { return contactTel; } public void setContactTel(String contactTel) { this.contactTel = contactTel; } public Date getWellTime() { return wellTime; } public void setWellTime(Date wellTime) { this.wellTime = wellTime; } public Double getWellHeight() { return wellHeight; } public void setWellHeight(Double wellHeight) { this.wellHeight = wellHeight; } public String getWellType() { return wellType; } public void setWellType(String wellType) { this.wellType = wellType; } public String getCardNum() { return cardNum; } public void setCardNum(String cardNum) { this.cardNum = cardNum; } public String getFilesNum() { return filesNum; } public void setFilesNum(String filesNum) { this.filesNum = filesNum; } 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; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } }