package com.javaweb.platform.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;
|
import java.util.Date;
|
|
/**
|
* 钻孔信息对象 js_hole_info
|
*
|
* @author ruoyi
|
* @date 2022-03-22
|
*/
|
public class HoleInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 项目编号 */
|
@Excel(name = "项目编号")
|
private String projNo;
|
|
/** 钻孔编号 */
|
@Excel(name = "钻孔编号")
|
private String holeNo;
|
|
/** null */
|
@Excel(name = "null")
|
private String officeCode;
|
|
/** 孔口标高 */
|
@Excel(name = "孔口标高")
|
private Long holeElev;
|
|
/** 孔深 */
|
@Excel(name = "孔深")
|
private Double holeDepth;
|
|
/** 钻孔移位 */
|
@Excel(name = "钻孔移位")
|
private String holeShift;
|
|
/** 钻孔类型 */
|
@Excel(name = "钻孔类型")
|
private String holeType;
|
|
/** 钻机型号 */
|
@Excel(name = "钻机型号")
|
private String rigModel;
|
|
/** 开孔直径 */
|
@Excel(name = "开孔直径")
|
private Double holeDiam;
|
|
/** 终孔直径 */
|
@Excel(name = "终孔直径")
|
private Double endDiam;
|
|
/** 开孔日期 */
|
@Excel(name = "开孔日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date startDate;
|
|
/** 终孔日期 */
|
@Excel(name = "终孔日期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date endDate;
|
|
/** 冠号 */
|
@Excel(name = "冠号")
|
private String crownNo;
|
|
/** 桩与里程 */
|
@Excel(name = "桩与里程")
|
private Double mileageMile;
|
|
/** 钻孔高差 */
|
@Excel(name = "钻孔高差")
|
private Double holeHeightDif;
|
|
/** 路面标高 */
|
@Excel(name = "路面标高")
|
private Double roadLevel;
|
|
/** 探槽深度 */
|
@Excel(name = "探槽深度")
|
private Double grooveDepth;
|
|
/** 探槽长度 */
|
@Excel(name = "探槽长度")
|
private Double grooveLenth;
|
|
/** 探槽宽度 */
|
@Excel(name = "探槽宽度")
|
private Double grooveWidth;
|
|
/** 探井深度 */
|
@Excel(name = "探井深度")
|
private Double manholeDepth;
|
|
/** 钻探机具 */
|
@Excel(name = "钻探机具")
|
private String drillRig;
|
|
/** 劳务单位 */
|
@Excel(name = "劳务单位")
|
private String drillComp;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private Double longitude;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private Double latitude;
|
|
/** 定位时间 */
|
@Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date locationTime;
|
|
/** 备注信息 */
|
@Excel(name = "备注信息")
|
private String remarkMsg;
|
|
/** 下达任务 */
|
@Excel(name = "下达任务")
|
private String task;
|
|
/** 任务备注 */
|
@Excel(name = "任务备注")
|
private String taskRemark;
|
|
/** 钻孔状态 */
|
@Excel(name = "钻孔状态")
|
private String state;
|
|
/** 外业进度 完成進度 */
|
@Excel(name = "外业进度 完成進度")
|
private String progress;
|
|
/** 描述员签字 */
|
@Excel(name = "描述员签字")
|
private String descriptorSign;
|
|
/** 司钻员签字 */
|
@Excel(name = "司钻员签字")
|
private String drillerSign;
|
|
/** 量尺员签字 */
|
@Excel(name = "量尺员签字")
|
private String measurerSign;
|
|
/** 互校员签字 */
|
@Excel(name = "互校员签字")
|
private String correctorSign;
|
|
/** 检查员签字 */
|
@Excel(name = "检查员签字")
|
private String procuratorSign;
|
|
/** 描述员 */
|
@Excel(name = "描述员")
|
private String descriptor;
|
|
/** 描述员编号 */
|
@Excel(name = "描述员编号")
|
private String descriptorNo;
|
|
/** 司钻员 */
|
@Excel(name = "司钻员")
|
private String driller;
|
|
/** 司钻员编号 */
|
@Excel(name = "司钻员编号")
|
private String drillerNo;
|
|
/** 钻孔图片 */
|
@Excel(name = "钻孔图片")
|
private String drillImg;
|
|
/** 钻孔视频 */
|
@Excel(name = "钻孔视频")
|
private String drillVideo;
|
|
/** 删除标记,0正常,1删除 */
|
private String delFlag;
|
|
/** 钻机编号 */
|
@Excel(name = "钻机编号")
|
private String drillrigno;
|
|
/** null */
|
@Excel(name = "null")
|
private String ids;
|
|
/** null */
|
@Excel(name = "null")
|
private String isHistory;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setProjNo(String projNo)
|
{
|
this.projNo = projNo;
|
}
|
|
public String getProjNo()
|
{
|
return projNo;
|
}
|
public void setHoleNo(String holeNo)
|
{
|
this.holeNo = holeNo;
|
}
|
|
public String getHoleNo()
|
{
|
return holeNo;
|
}
|
public void setOfficeCode(String officeCode)
|
{
|
this.officeCode = officeCode;
|
}
|
|
public String getOfficeCode()
|
{
|
return officeCode;
|
}
|
public void setHoleElev(Long holeElev)
|
{
|
this.holeElev = holeElev;
|
}
|
|
public Long getHoleElev()
|
{
|
return holeElev;
|
}
|
public void setHoleDepth(Double holeDepth)
|
{
|
this.holeDepth = holeDepth;
|
}
|
|
public Double getHoleDepth()
|
{
|
return holeDepth;
|
}
|
public void setHoleShift(String holeShift)
|
{
|
this.holeShift = holeShift;
|
}
|
|
public String getHoleShift()
|
{
|
return holeShift;
|
}
|
public void setHoleType(String holeType)
|
{
|
this.holeType = holeType;
|
}
|
|
public String getHoleType()
|
{
|
return holeType;
|
}
|
public void setRigModel(String rigModel)
|
{
|
this.rigModel = rigModel;
|
}
|
|
public String getRigModel()
|
{
|
return rigModel;
|
}
|
public void setHoleDiam(Double holeDiam)
|
{
|
this.holeDiam = holeDiam;
|
}
|
|
public Double getHoleDiam()
|
{
|
return holeDiam;
|
}
|
public void setEndDiam(Double endDiam)
|
{
|
this.endDiam = endDiam;
|
}
|
|
public Double getEndDiam()
|
{
|
return endDiam;
|
}
|
public void setStartDate(Date startDate)
|
{
|
this.startDate = startDate;
|
}
|
|
public Date getStartDate()
|
{
|
return startDate;
|
}
|
public void setEndDate(Date endDate)
|
{
|
this.endDate = endDate;
|
}
|
|
public Date getEndDate()
|
{
|
return endDate;
|
}
|
public void setCrownNo(String crownNo)
|
{
|
this.crownNo = crownNo;
|
}
|
|
public String getCrownNo()
|
{
|
return crownNo;
|
}
|
public void setMileageMile(Double mileageMile)
|
{
|
this.mileageMile = mileageMile;
|
}
|
|
public Double getMileageMile()
|
{
|
return mileageMile;
|
}
|
public void setHoleHeightDif(Double holeHeightDif)
|
{
|
this.holeHeightDif = holeHeightDif;
|
}
|
|
public Double getHoleHeightDif()
|
{
|
return holeHeightDif;
|
}
|
public void setRoadLevel(Double roadLevel)
|
{
|
this.roadLevel = roadLevel;
|
}
|
|
public Double getRoadLevel()
|
{
|
return roadLevel;
|
}
|
public void setGrooveDepth(Double grooveDepth)
|
{
|
this.grooveDepth = grooveDepth;
|
}
|
|
public Double getGrooveDepth()
|
{
|
return grooveDepth;
|
}
|
public void setGrooveLenth(Double grooveLenth)
|
{
|
this.grooveLenth = grooveLenth;
|
}
|
|
public Double getGrooveLenth()
|
{
|
return grooveLenth;
|
}
|
public void setGrooveWidth(Double grooveWidth)
|
{
|
this.grooveWidth = grooveWidth;
|
}
|
|
public Double getGrooveWidth()
|
{
|
return grooveWidth;
|
}
|
public void setManholeDepth(Double manholeDepth)
|
{
|
this.manholeDepth = manholeDepth;
|
}
|
|
public Double getManholeDepth()
|
{
|
return manholeDepth;
|
}
|
public void setDrillRig(String drillRig)
|
{
|
this.drillRig = drillRig;
|
}
|
|
public String getDrillRig()
|
{
|
return drillRig;
|
}
|
public void setDrillComp(String drillComp)
|
{
|
this.drillComp = drillComp;
|
}
|
|
public String getDrillComp()
|
{
|
return drillComp;
|
}
|
public void setLongitude(Double longitude)
|
{
|
this.longitude = longitude;
|
}
|
|
public Double getLongitude()
|
{
|
return longitude;
|
}
|
public void setLatitude(Double latitude)
|
{
|
this.latitude = latitude;
|
}
|
|
public Double getLatitude()
|
{
|
return latitude;
|
}
|
public void setLocationTime(Date locationTime)
|
{
|
this.locationTime = locationTime;
|
}
|
|
public Date getLocationTime()
|
{
|
return locationTime;
|
}
|
public void setRemarkMsg(String remarkMsg)
|
{
|
this.remarkMsg = remarkMsg;
|
}
|
|
public String getRemarkMsg()
|
{
|
return remarkMsg;
|
}
|
public void setTask(String task)
|
{
|
this.task = task;
|
}
|
|
public String getTask()
|
{
|
return task;
|
}
|
public void setTaskRemark(String taskRemark)
|
{
|
this.taskRemark = taskRemark;
|
}
|
|
public String getTaskRemark()
|
{
|
return taskRemark;
|
}
|
public void setState(String state)
|
{
|
this.state = state;
|
}
|
|
public String getState()
|
{
|
return state;
|
}
|
public void setProgress(String progress)
|
{
|
this.progress = progress;
|
}
|
|
public String getProgress()
|
{
|
return progress;
|
}
|
public void setDescriptorSign(String descriptorSign)
|
{
|
this.descriptorSign = descriptorSign;
|
}
|
|
public String getDescriptorSign()
|
{
|
return descriptorSign;
|
}
|
public void setDrillerSign(String drillerSign)
|
{
|
this.drillerSign = drillerSign;
|
}
|
|
public String getDrillerSign()
|
{
|
return drillerSign;
|
}
|
public void setMeasurerSign(String measurerSign)
|
{
|
this.measurerSign = measurerSign;
|
}
|
|
public String getMeasurerSign()
|
{
|
return measurerSign;
|
}
|
public void setCorrectorSign(String correctorSign)
|
{
|
this.correctorSign = correctorSign;
|
}
|
|
public String getCorrectorSign()
|
{
|
return correctorSign;
|
}
|
public void setProcuratorSign(String procuratorSign)
|
{
|
this.procuratorSign = procuratorSign;
|
}
|
|
public String getProcuratorSign()
|
{
|
return procuratorSign;
|
}
|
public void setDescriptor(String descriptor)
|
{
|
this.descriptor = descriptor;
|
}
|
|
public String getDescriptor()
|
{
|
return descriptor;
|
}
|
public void setDescriptorNo(String descriptorNo)
|
{
|
this.descriptorNo = descriptorNo;
|
}
|
|
public String getDescriptorNo()
|
{
|
return descriptorNo;
|
}
|
public void setDriller(String driller)
|
{
|
this.driller = driller;
|
}
|
|
public String getDriller()
|
{
|
return driller;
|
}
|
public void setDrillerNo(String drillerNo)
|
{
|
this.drillerNo = drillerNo;
|
}
|
|
public String getDrillerNo()
|
{
|
return drillerNo;
|
}
|
public void setDrillImg(String drillImg)
|
{
|
this.drillImg = drillImg;
|
}
|
|
public String getDrillImg()
|
{
|
return drillImg;
|
}
|
public void setDrillVideo(String drillVideo)
|
{
|
this.drillVideo = drillVideo;
|
}
|
|
public String getDrillVideo()
|
{
|
return drillVideo;
|
}
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
public void setDrillrigno(String drillrigno)
|
{
|
this.drillrigno = drillrigno;
|
}
|
|
public String getDrillrigno()
|
{
|
return drillrigno;
|
}
|
public void setIds(String ids)
|
{
|
this.ids = ids;
|
}
|
|
public String getIds()
|
{
|
return ids;
|
}
|
public void setIsHistory(String isHistory)
|
{
|
this.isHistory = isHistory;
|
}
|
|
public String getIsHistory()
|
{
|
return isHistory;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("projNo", getProjNo())
|
.append("holeNo", getHoleNo())
|
.append("officeCode", getOfficeCode())
|
.append("holeElev", getHoleElev())
|
.append("holeDepth", getHoleDepth())
|
.append("holeShift", getHoleShift())
|
.append("holeType", getHoleType())
|
.append("rigModel", getRigModel())
|
.append("holeDiam", getHoleDiam())
|
.append("endDiam", getEndDiam())
|
.append("startDate", getStartDate())
|
.append("endDate", getEndDate())
|
.append("crownNo", getCrownNo())
|
.append("mileageMile", getMileageMile())
|
.append("holeHeightDif", getHoleHeightDif())
|
.append("roadLevel", getRoadLevel())
|
.append("grooveDepth", getGrooveDepth())
|
.append("grooveLenth", getGrooveLenth())
|
.append("grooveWidth", getGrooveWidth())
|
.append("manholeDepth", getManholeDepth())
|
.append("drillRig", getDrillRig())
|
.append("drillComp", getDrillComp())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("locationTime", getLocationTime())
|
.append("remarkMsg", getRemarkMsg())
|
.append("task", getTask())
|
.append("taskRemark", getTaskRemark())
|
.append("state", getState())
|
.append("progress", getProgress())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("descriptorSign", getDescriptorSign())
|
.append("drillerSign", getDrillerSign())
|
.append("measurerSign", getMeasurerSign())
|
.append("correctorSign", getCorrectorSign())
|
.append("procuratorSign", getProcuratorSign())
|
.append("descriptor", getDescriptor())
|
.append("descriptorNo", getDescriptorNo())
|
.append("driller", getDriller())
|
.append("drillerNo", getDrillerNo())
|
.append("drillImg", getDrillImg())
|
.append("drillVideo", getDrillVideo())
|
.append("delFlag", getDelFlag())
|
.append("drillrigno", getDrillrigno())
|
.append("ids", getIds())
|
.append("isHistory", getIsHistory())
|
.toString();
|
}
|
}
|