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;
|
|
/**
|
* 钻孔记录对象 js_hole_record
|
*
|
* @author ruoyi
|
* @date 2022-03-22
|
*/
|
public class HoleRecord extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String id;
|
|
/** 记录编号 */
|
@Excel(name = "记录编号")
|
private String recordNo;
|
|
/** 项目id */
|
@Excel(name = "项目id")
|
private String projectId;
|
|
/** 钻孔id */
|
@Excel(name = "钻孔id")
|
private String drillId;
|
|
/** 记录类型(1:测试/原位、2:取样、5:回次、8:岩土、水位)、13:测试 */
|
@Excel(name = "记录类型(1:测试/原位、2:取样、5:回次、8:岩土、水位)、13:测试")
|
private String recordType;
|
|
/** 起始深度 */
|
@Excel(name = "起始深度")
|
private Long startDepth;
|
|
/** 终止深度 */
|
@Excel(name = "终止深度")
|
private Long endDepth;
|
|
/** 钻进方法(回次记录) */
|
@Excel(name = "钻进方法", readConverterExp = "回=次记录")
|
private String drillMethod;
|
|
/** 护壁方法(回次记录) */
|
@Excel(name = "护壁方法", readConverterExp = "回=次记录")
|
private String protectMethod;
|
|
/** 钻孔孔径(回次记录) */
|
@Excel(name = "钻孔孔径", readConverterExp = "回=次记录")
|
private Long drillAperture;
|
|
/** 土样质量等级(取样记录) */
|
@Excel(name = "土样质量等级", readConverterExp = "取=样记录")
|
private String soilQuality;
|
|
/** 取样工具和方法(取样记录) */
|
@Excel(name = "取样工具和方法", readConverterExp = "取=样记录")
|
private String samplingMethod;
|
|
/** 岩土类型(岩土、水位记录) */
|
@Excel(name = "岩土类型", readConverterExp = "岩=土、水位记录")
|
private String rockType;
|
|
/** 岩土定名(岩土、水位记录) */
|
@Excel(name = "岩土定名", readConverterExp = "岩=土、水位记录")
|
private String rockName;
|
|
/** 颜色(岩土、水位记录) */
|
@Excel(name = "颜色", readConverterExp = "岩=土、水位记录")
|
private String color;
|
|
/** 颗粒形状(岩土、水位记录) */
|
@Excel(name = "颗粒形状", readConverterExp = "岩=土、水位记录")
|
private String particleShape;
|
|
/** 颗粒排列(岩土、水位记录) */
|
@Excel(name = "颗粒排列", readConverterExp = "岩=土、水位记录")
|
private String particleArrange;
|
|
/** 颗粒级配(岩土、水位记录) */
|
@Excel(name = "颗粒级配", readConverterExp = "岩=土、水位记录")
|
private String particleGrade;
|
|
/** 湿度(岩土、水位记录) */
|
@Excel(name = "湿度", readConverterExp = "岩=土、水位记录")
|
private String humidity;
|
|
/** 密实度(岩土、水位记录) */
|
@Excel(name = "密实度", readConverterExp = "岩=土、水位记录")
|
private String density;
|
|
/** 均匀性(岩土、水位记录) */
|
@Excel(name = "均匀性", readConverterExp = "岩=土、水位记录")
|
private String uniformity;
|
|
/** 状态(岩土、水位记录) */
|
@Excel(name = "状态", readConverterExp = "岩=土、水位记录")
|
private String state;
|
|
/** 包含物(岩土、水位记录) */
|
@Excel(name = "包含物", readConverterExp = "岩=土、水位记录")
|
private String inclusions;
|
|
/** 一般粒径小(岩土、水位记录) */
|
@Excel(name = "一般粒径小", readConverterExp = "岩=土、水位记录")
|
private String generalSmallParticle;
|
|
/** 一般粒径大(岩土、水位记录) */
|
@Excel(name = "一般粒径大", readConverterExp = "岩=土、水位记录")
|
private String generalBigParticle;
|
|
/** 较大粒径小(岩土、水位记录) */
|
@Excel(name = "较大粒径小", readConverterExp = "岩=土、水位记录")
|
private String largerSmallParticle;
|
|
/** 较大粒径大(岩土、水位记录) */
|
@Excel(name = "较大粒径大", readConverterExp = "岩=土、水位记录")
|
private String largerBigParticle;
|
|
/** 最大粒径(岩土、水位记录) */
|
@Excel(name = "最大粒径", readConverterExp = "岩=土、水位记录")
|
private String biggestParticle;
|
|
/** 主要成分(岩土、水位记录) */
|
@Excel(name = "主要成分", readConverterExp = "岩=土、水位记录")
|
private String mainIngredient;
|
|
/** 次要成分(岩土、水位记录) */
|
@Excel(name = "次要成分", readConverterExp = "岩=土、水位记录")
|
private String secondIngredient;
|
|
/** 坚硬程度(岩土、水位记录) */
|
@Excel(name = "坚硬程度", readConverterExp = "岩=土、水位记录")
|
private String hardDegree;
|
|
/** 完整程度(岩土、水位记录) */
|
@Excel(name = "完整程度", readConverterExp = "岩=土、水位记录")
|
private String completeDegree;
|
|
/** 可挖性(岩土、水位记录) */
|
@Excel(name = "可挖性", readConverterExp = "岩=土、水位记录")
|
private String digProperty;
|
|
/** 钻孔长度(测试记录) */
|
@Excel(name = "钻孔长度(测试记录)")
|
private Long drillLength;
|
|
/** 预打起始深度(测试记录) */
|
@Excel(name = "预打起始深度(测试记录)")
|
private Long advanceStartDepth;
|
|
/** 第1次起始深度(测试记录) */
|
@Excel(name = "第1次起始深度(测试记录)")
|
private Long firstStartDepth;
|
|
/** 第2次起始深度(测试记录) */
|
@Excel(name = "第2次起始深度(测试记录)")
|
private Long secondStartDepth;
|
|
/** 第3次起始深度(测试记录) */
|
@Excel(name = "第3次起始深度(测试记录)")
|
private Long thirdStartDepth;
|
|
/** 预打终止深度(测试记录) */
|
@Excel(name = "预打终止深度(测试记录)")
|
private Long advanceEndDepth;
|
|
/** 第一次终止深度(测试记录) */
|
@Excel(name = "第一次终止深度(测试记录)")
|
private Long firstEndDepth;
|
|
/** 第二次终止深度(测试记录) */
|
@Excel(name = "第二次终止深度(测试记录)")
|
private Long secondEndDepth;
|
|
/** 第三次终止深度(测试记录) */
|
@Excel(name = "第三次终止深度(测试记录)")
|
private Long thirdEndDepth;
|
|
/** 预打锤击次数(测试记录) */
|
@Excel(name = "预打锤击次数(测试记录)")
|
private Long advanceHammerNumber;
|
|
/** 第一次锤击次数(测试记录) */
|
@Excel(name = "第一次锤击次数(测试记录)")
|
private Long firstHammerNumber;
|
|
/** 第二次锤击次数(测试记录) */
|
@Excel(name = "第二次锤击次数(测试记录)")
|
private Long secondHammerNumber;
|
|
/** 第三次锤击次数(测试记录) */
|
@Excel(name = "第三次锤击次数(测试记录)")
|
private Long thirdHammerNumber;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setRecordNo(String recordNo)
|
{
|
this.recordNo = recordNo;
|
}
|
|
public String getRecordNo()
|
{
|
return recordNo;
|
}
|
public void setProjectId(String projectId)
|
{
|
this.projectId = projectId;
|
}
|
|
public String getProjectId()
|
{
|
return projectId;
|
}
|
public void setDrillId(String drillId)
|
{
|
this.drillId = drillId;
|
}
|
|
public String getDrillId()
|
{
|
return drillId;
|
}
|
public void setRecordType(String recordType)
|
{
|
this.recordType = recordType;
|
}
|
|
public String getRecordType()
|
{
|
return recordType;
|
}
|
public void setStartDepth(Long startDepth)
|
{
|
this.startDepth = startDepth;
|
}
|
|
public Long getStartDepth()
|
{
|
return startDepth;
|
}
|
public void setEndDepth(Long endDepth)
|
{
|
this.endDepth = endDepth;
|
}
|
|
public Long getEndDepth()
|
{
|
return endDepth;
|
}
|
public void setDrillMethod(String drillMethod)
|
{
|
this.drillMethod = drillMethod;
|
}
|
|
public String getDrillMethod()
|
{
|
return drillMethod;
|
}
|
public void setProtectMethod(String protectMethod)
|
{
|
this.protectMethod = protectMethod;
|
}
|
|
public String getProtectMethod()
|
{
|
return protectMethod;
|
}
|
public void setDrillAperture(Long drillAperture)
|
{
|
this.drillAperture = drillAperture;
|
}
|
|
public Long getDrillAperture()
|
{
|
return drillAperture;
|
}
|
public void setSoilQuality(String soilQuality)
|
{
|
this.soilQuality = soilQuality;
|
}
|
|
public String getSoilQuality()
|
{
|
return soilQuality;
|
}
|
public void setSamplingMethod(String samplingMethod)
|
{
|
this.samplingMethod = samplingMethod;
|
}
|
|
public String getSamplingMethod()
|
{
|
return samplingMethod;
|
}
|
public void setRockType(String rockType)
|
{
|
this.rockType = rockType;
|
}
|
|
public String getRockType()
|
{
|
return rockType;
|
}
|
public void setRockName(String rockName)
|
{
|
this.rockName = rockName;
|
}
|
|
public String getRockName()
|
{
|
return rockName;
|
}
|
public void setColor(String color)
|
{
|
this.color = color;
|
}
|
|
public String getColor()
|
{
|
return color;
|
}
|
public void setParticleShape(String particleShape)
|
{
|
this.particleShape = particleShape;
|
}
|
|
public String getParticleShape()
|
{
|
return particleShape;
|
}
|
public void setParticleArrange(String particleArrange)
|
{
|
this.particleArrange = particleArrange;
|
}
|
|
public String getParticleArrange()
|
{
|
return particleArrange;
|
}
|
public void setParticleGrade(String particleGrade)
|
{
|
this.particleGrade = particleGrade;
|
}
|
|
public String getParticleGrade()
|
{
|
return particleGrade;
|
}
|
public void setHumidity(String humidity)
|
{
|
this.humidity = humidity;
|
}
|
|
public String getHumidity()
|
{
|
return humidity;
|
}
|
public void setDensity(String density)
|
{
|
this.density = density;
|
}
|
|
public String getDensity()
|
{
|
return density;
|
}
|
public void setUniformity(String uniformity)
|
{
|
this.uniformity = uniformity;
|
}
|
|
public String getUniformity()
|
{
|
return uniformity;
|
}
|
public void setState(String state)
|
{
|
this.state = state;
|
}
|
|
public String getState()
|
{
|
return state;
|
}
|
public void setInclusions(String inclusions)
|
{
|
this.inclusions = inclusions;
|
}
|
|
public String getInclusions()
|
{
|
return inclusions;
|
}
|
public void setGeneralSmallParticle(String generalSmallParticle)
|
{
|
this.generalSmallParticle = generalSmallParticle;
|
}
|
|
public String getGeneralSmallParticle()
|
{
|
return generalSmallParticle;
|
}
|
public void setGeneralBigParticle(String generalBigParticle)
|
{
|
this.generalBigParticle = generalBigParticle;
|
}
|
|
public String getGeneralBigParticle()
|
{
|
return generalBigParticle;
|
}
|
public void setLargerSmallParticle(String largerSmallParticle)
|
{
|
this.largerSmallParticle = largerSmallParticle;
|
}
|
|
public String getLargerSmallParticle()
|
{
|
return largerSmallParticle;
|
}
|
public void setLargerBigParticle(String largerBigParticle)
|
{
|
this.largerBigParticle = largerBigParticle;
|
}
|
|
public String getLargerBigParticle()
|
{
|
return largerBigParticle;
|
}
|
public void setBiggestParticle(String biggestParticle)
|
{
|
this.biggestParticle = biggestParticle;
|
}
|
|
public String getBiggestParticle()
|
{
|
return biggestParticle;
|
}
|
public void setMainIngredient(String mainIngredient)
|
{
|
this.mainIngredient = mainIngredient;
|
}
|
|
public String getMainIngredient()
|
{
|
return mainIngredient;
|
}
|
public void setSecondIngredient(String secondIngredient)
|
{
|
this.secondIngredient = secondIngredient;
|
}
|
|
public String getSecondIngredient()
|
{
|
return secondIngredient;
|
}
|
public void setHardDegree(String hardDegree)
|
{
|
this.hardDegree = hardDegree;
|
}
|
|
public String getHardDegree()
|
{
|
return hardDegree;
|
}
|
public void setCompleteDegree(String completeDegree)
|
{
|
this.completeDegree = completeDegree;
|
}
|
|
public String getCompleteDegree()
|
{
|
return completeDegree;
|
}
|
public void setDigProperty(String digProperty)
|
{
|
this.digProperty = digProperty;
|
}
|
|
public String getDigProperty()
|
{
|
return digProperty;
|
}
|
public void setDrillLength(Long drillLength)
|
{
|
this.drillLength = drillLength;
|
}
|
|
public Long getDrillLength()
|
{
|
return drillLength;
|
}
|
public void setAdvanceStartDepth(Long advanceStartDepth)
|
{
|
this.advanceStartDepth = advanceStartDepth;
|
}
|
|
public Long getAdvanceStartDepth()
|
{
|
return advanceStartDepth;
|
}
|
public void setFirstStartDepth(Long firstStartDepth)
|
{
|
this.firstStartDepth = firstStartDepth;
|
}
|
|
public Long getFirstStartDepth()
|
{
|
return firstStartDepth;
|
}
|
public void setSecondStartDepth(Long secondStartDepth)
|
{
|
this.secondStartDepth = secondStartDepth;
|
}
|
|
public Long getSecondStartDepth()
|
{
|
return secondStartDepth;
|
}
|
public void setThirdStartDepth(Long thirdStartDepth)
|
{
|
this.thirdStartDepth = thirdStartDepth;
|
}
|
|
public Long getThirdStartDepth()
|
{
|
return thirdStartDepth;
|
}
|
public void setAdvanceEndDepth(Long advanceEndDepth)
|
{
|
this.advanceEndDepth = advanceEndDepth;
|
}
|
|
public Long getAdvanceEndDepth()
|
{
|
return advanceEndDepth;
|
}
|
public void setFirstEndDepth(Long firstEndDepth)
|
{
|
this.firstEndDepth = firstEndDepth;
|
}
|
|
public Long getFirstEndDepth()
|
{
|
return firstEndDepth;
|
}
|
public void setSecondEndDepth(Long secondEndDepth)
|
{
|
this.secondEndDepth = secondEndDepth;
|
}
|
|
public Long getSecondEndDepth()
|
{
|
return secondEndDepth;
|
}
|
public void setThirdEndDepth(Long thirdEndDepth)
|
{
|
this.thirdEndDepth = thirdEndDepth;
|
}
|
|
public Long getThirdEndDepth()
|
{
|
return thirdEndDepth;
|
}
|
public void setAdvanceHammerNumber(Long advanceHammerNumber)
|
{
|
this.advanceHammerNumber = advanceHammerNumber;
|
}
|
|
public Long getAdvanceHammerNumber()
|
{
|
return advanceHammerNumber;
|
}
|
public void setFirstHammerNumber(Long firstHammerNumber)
|
{
|
this.firstHammerNumber = firstHammerNumber;
|
}
|
|
public Long getFirstHammerNumber()
|
{
|
return firstHammerNumber;
|
}
|
public void setSecondHammerNumber(Long secondHammerNumber)
|
{
|
this.secondHammerNumber = secondHammerNumber;
|
}
|
|
public Long getSecondHammerNumber()
|
{
|
return secondHammerNumber;
|
}
|
public void setThirdHammerNumber(Long thirdHammerNumber)
|
{
|
this.thirdHammerNumber = thirdHammerNumber;
|
}
|
|
public Long getThirdHammerNumber()
|
{
|
return thirdHammerNumber;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("recordNo", getRecordNo())
|
.append("projectId", getProjectId())
|
.append("drillId", getDrillId())
|
.append("recordType", getRecordType())
|
.append("startDepth", getStartDepth())
|
.append("endDepth", getEndDepth())
|
.append("drillMethod", getDrillMethod())
|
.append("protectMethod", getProtectMethod())
|
.append("drillAperture", getDrillAperture())
|
.append("soilQuality", getSoilQuality())
|
.append("samplingMethod", getSamplingMethod())
|
.append("rockType", getRockType())
|
.append("rockName", getRockName())
|
.append("color", getColor())
|
.append("particleShape", getParticleShape())
|
.append("particleArrange", getParticleArrange())
|
.append("particleGrade", getParticleGrade())
|
.append("humidity", getHumidity())
|
.append("density", getDensity())
|
.append("uniformity", getUniformity())
|
.append("state", getState())
|
.append("inclusions", getInclusions())
|
.append("generalSmallParticle", getGeneralSmallParticle())
|
.append("generalBigParticle", getGeneralBigParticle())
|
.append("largerSmallParticle", getLargerSmallParticle())
|
.append("largerBigParticle", getLargerBigParticle())
|
.append("biggestParticle", getBiggestParticle())
|
.append("mainIngredient", getMainIngredient())
|
.append("secondIngredient", getSecondIngredient())
|
.append("hardDegree", getHardDegree())
|
.append("completeDegree", getCompleteDegree())
|
.append("digProperty", getDigProperty())
|
.append("drillLength", getDrillLength())
|
.append("advanceStartDepth", getAdvanceStartDepth())
|
.append("firstStartDepth", getFirstStartDepth())
|
.append("secondStartDepth", getSecondStartDepth())
|
.append("thirdStartDepth", getThirdStartDepth())
|
.append("advanceEndDepth", getAdvanceEndDepth())
|
.append("firstEndDepth", getFirstEndDepth())
|
.append("secondEndDepth", getSecondEndDepth())
|
.append("thirdEndDepth", getThirdEndDepth())
|
.append("advanceHammerNumber", getAdvanceHammerNumber())
|
.append("firstHammerNumber", getFirstHammerNumber())
|
.append("secondHammerNumber", getSecondHammerNumber())
|
.append("thirdHammerNumber", getThirdHammerNumber())
|
.toString();
|
}
|
}
|