package com.javaweb.hydrology.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.javaweb.common.annotation.Excel;
|
import com.javaweb.common.core.domain.BaseEntity;
|
|
/**
|
* 水文钻孔对象 js_hydrology_hole_info
|
*
|
* @author zmk
|
* @date 2022-09-01
|
*/
|
public class HydrologyHoleInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** null */
|
private Long id;
|
|
/** 井号 */
|
@Excel(name = "井号")
|
private String holeNum;
|
|
/** 区县 */
|
@Excel(name = "区县")
|
private String district;
|
|
/** 孔位 */
|
@Excel(name = "孔位")
|
private String address;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private Double lng;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private Double lat;
|
|
/** 孔深(m) */
|
@Excel(name = "孔深(m)")
|
private Double holeDepth;
|
|
/** 孔口标高 */
|
@Excel(name = "孔口标高")
|
private Double elevation;
|
|
/** 成井时间 */
|
@Excel(name = "成井时间")
|
private String wellDate;
|
|
/** 滤水管埋深 */
|
@Excel(name = "滤水管埋深")
|
private String pipeDepth;
|
|
/** 仪器类型 */
|
@Excel(name = "仪器类型")
|
private String machineType;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setHoleNum(String holeNum)
|
{
|
this.holeNum = holeNum;
|
}
|
|
public String getHoleNum()
|
{
|
return holeNum;
|
}
|
public void setDistrict(String district)
|
{
|
this.district = district;
|
}
|
|
public String getDistrict()
|
{
|
return district;
|
}
|
public void setAddress(String address)
|
{
|
this.address = address;
|
}
|
|
public String getAddress()
|
{
|
return address;
|
}
|
public void setLng(Double lng)
|
{
|
this.lng = lng;
|
}
|
|
public Double getLng()
|
{
|
return lng;
|
}
|
public void setLat(Double lat)
|
{
|
this.lat = lat;
|
}
|
|
public Double getLat()
|
{
|
return lat;
|
}
|
public void setHoleDepth(Double holeDepth)
|
{
|
this.holeDepth = holeDepth;
|
}
|
|
public Double getHoleDepth()
|
{
|
return holeDepth;
|
}
|
public void setElevation(Double elevation)
|
{
|
this.elevation = elevation;
|
}
|
|
public Double getElevation()
|
{
|
return elevation;
|
}
|
public void setWellDate(String wellDate)
|
{
|
this.wellDate = wellDate;
|
}
|
|
public String getWellDate()
|
{
|
return wellDate;
|
}
|
public void setPipeDepth(String pipeDepth)
|
{
|
this.pipeDepth = pipeDepth;
|
}
|
|
public String getPipeDepth()
|
{
|
return pipeDepth;
|
}
|
public void setMachineType(String machineType)
|
{
|
this.machineType = machineType;
|
}
|
|
public String getMachineType()
|
{
|
return machineType;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("holeNum", getHoleNum())
|
.append("district", getDistrict())
|
.append("address", getAddress())
|
.append("lng", getLng())
|
.append("lat", getLat())
|
.append("holeDepth", getHoleDepth())
|
.append("elevation", getElevation())
|
.append("wellDate", getWellDate())
|
.append("pipeDepth", getPipeDepth())
|
.append("machineType", getMachineType())
|
.append("remark", getRemark())
|
.append("createTime", getCreateTime())
|
.toString();
|
}
|
}
|