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_layer_info
|
*
|
* @author zzf
|
* @date 2022-03-25
|
*/
|
public class LayerInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 项目编号 */
|
@Excel(name = "项目编号")
|
private String projNo;
|
|
/** 钻孔编号 */
|
@Excel(name = "钻孔编号")
|
private String holeNo;
|
|
/** 层底深度 */
|
@Excel(name = "层底深度")
|
private Double bottomDepth;
|
|
/** 岩土类型 */
|
@Excel(name = "岩土类型")
|
private String rockType;
|
|
/** 岩土定名 */
|
@Excel(name = "岩土定名")
|
private String rockName;
|
|
/** 混岩土类型 */
|
@Excel(name = "混岩土类型")
|
private String mixType;
|
|
/** 混岩土定名 */
|
@Excel(name = "混岩土定名")
|
private String mixName;
|
|
/** 岩性 */
|
@Excel(name = "岩性")
|
private String lithology;
|
|
/** 颜色一 */
|
@Excel(name = "颜色一")
|
private String colour;
|
|
/** 密度 */
|
@Excel(name = "密度")
|
private String density;
|
|
/** 湿度 */
|
@Excel(name = "湿度")
|
private String humidity;
|
|
/** 稠度 */
|
@Excel(name = "稠度")
|
private String consistency;
|
|
/** 强度 */
|
@Excel(name = "强度")
|
private String strength;
|
|
/** 断面状态 */
|
@Excel(name = "断面状态")
|
private String sectionState;
|
|
/** 岩石风化程度 */
|
@Excel(name = "岩石风化程度")
|
private String rockDeoayRate;
|
|
/** 岩层倾向 */
|
@Excel(name = "岩层倾向")
|
private String strataTendency;
|
|
/** 岩层倾角 */
|
@Excel(name = "岩层倾角")
|
private String strataInclination;
|
|
/** 填充物百分比 */
|
@Excel(name = "填充物百分比")
|
private Double fillerPercent;
|
|
/** 岩心形状 */
|
@Excel(name = "岩心形状")
|
private String coreShape;
|
|
/** 柱长范围(小) */
|
@Excel(name = "柱长范围", readConverterExp = "小=")
|
private String lengthRangeSmall;
|
|
/** 柱长范围(大) */
|
@Excel(name = "柱长范围", readConverterExp = "大=")
|
private String lengthRangeBig;
|
|
/** 柱长最大值 */
|
@Excel(name = "柱长最大值")
|
private String lengthRangeMax;
|
|
/** 块径范围(小) */
|
@Excel(name = "块径范围", readConverterExp = "小=")
|
private String blockDiameterRangeSmall;
|
|
/** 块径范围(大) */
|
@Excel(name = "块径范围", readConverterExp = "大=")
|
private String blockDiameterRangeBig;
|
|
/** 块径最大值 */
|
@Excel(name = "块径最大值")
|
private String blockDiameterRangeMax;
|
|
/** 地质成因 */
|
@Excel(name = "地质成因")
|
private String geologicalOrign;
|
|
/** 地质年代 */
|
@Excel(name = "地质年代")
|
private String geologicalYear;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private String state;
|
|
/** 包含物 */
|
@Excel(name = "包含物")
|
private String including;
|
|
/** 夹层 */
|
@Excel(name = "夹层")
|
private String interlayer;
|
|
/** 充填物 */
|
@Excel(name = "充填物")
|
private String filling;
|
|
/** 颗粒形状 */
|
@Excel(name = "颗粒形状")
|
private String particalShape;
|
|
/** 颗粒排列 */
|
@Excel(name = "颗粒排列")
|
private String particalLine;
|
|
/** 颗粒级配 */
|
@Excel(name = "颗粒级配")
|
private String particalSizeDistribution;
|
|
/** D一般小 */
|
@Excel(name = "D一般小")
|
private String dNormalSmall;
|
|
/** D一般大 */
|
@Excel(name = "D一般大")
|
private String dNormalBig;
|
|
/** D长 */
|
@Excel(name = "D长")
|
private String dLength;
|
|
/** D大 */
|
@Excel(name = "D大")
|
private String dBig;
|
|
/** 母岩成分 */
|
@Excel(name = "母岩成分")
|
private String parentRockComp;
|
|
/** 矿物组成 */
|
@Excel(name = "矿物组成")
|
private String mineralComp;
|
|
/** 坚硬程度 */
|
@Excel(name = "坚硬程度")
|
private String hardness;
|
|
/** 完整程度 */
|
@Excel(name = "完整程度")
|
private String integrity;
|
|
/** 基本质量等级 */
|
@Excel(name = "基本质量等级")
|
private String basicQualityLev;
|
|
/** 可挖性 */
|
@Excel(name = "可挖性")
|
private String diggability;
|
|
/** 结构类型 */
|
@Excel(name = "结构类型")
|
private String structureType;
|
|
/** 经度 */
|
@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 remarks;
|
|
/** 描述员 */
|
@Excel(name = "描述员")
|
private String descriptor;
|
|
/** 司钻员 */
|
@Excel(name = "司钻员")
|
private String driller;
|
|
/** 地层照片 */
|
@Excel(name = "地层照片")
|
private String layerImg;
|
|
/** 地层视频 */
|
@Excel(name = "地层视频")
|
private String layerVideo;
|
|
/** 删除标记,0正常,1删除 */
|
private String delFlag;
|
|
/** null */
|
@Excel(name = "null")
|
private String mainpart;
|
|
/** null */
|
@Excel(name = "null")
|
private String secondarypart;
|
|
/** null */
|
@Excel(name = "null")
|
private String pileyears;
|
|
/** null */
|
@Excel(name = "null")
|
private String homogeneity;
|
|
/** null */
|
@Excel(name = "null")
|
private String watercontent;
|
|
/** null */
|
@Excel(name = "null")
|
private Double topdepth;
|
|
/** null */
|
@Excel(name = "null")
|
private String layerno;
|
|
/** null */
|
@Excel(name = "null")
|
private String officeCode;
|
|
/** null */
|
@Excel(name = "null")
|
private String ishistory;
|
|
/** 记录编号 */
|
@Excel(name = "记录编号")
|
private String recordNo;
|
|
/** 记录类型 */
|
@Excel(name = "记录类型")
|
private String recordType;
|
|
/** 地质年代 */
|
@Excel(name = "地质年代")
|
private String geologicTime;
|
|
/** 冲积 */
|
@Excel(name = "冲积")
|
private String alluvial;
|
|
/** 较大粒径小 */
|
@Excel(name = "较大粒径小")
|
private String largeDiameterRangeSmall;
|
|
/** 较大粒径大 */
|
@Excel(name = "较大粒径大")
|
private String largeDiameterRangeBig;
|
|
/** 主要成分 */
|
@Excel(name = "主要成分")
|
private String mainIngredients;
|
|
/** 次要成分 */
|
@Excel(name = "次要成分")
|
private String secondIngredients;
|
|
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 setBottomDepth(Double bottomDepth)
|
{
|
this.bottomDepth = bottomDepth;
|
}
|
|
public Double getBottomDepth()
|
{
|
return bottomDepth;
|
}
|
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 setMixType(String mixType)
|
{
|
this.mixType = mixType;
|
}
|
|
public String getMixType()
|
{
|
return mixType;
|
}
|
public void setMixName(String mixName)
|
{
|
this.mixName = mixName;
|
}
|
|
public String getMixName()
|
{
|
return mixName;
|
}
|
public void setLithology(String lithology)
|
{
|
this.lithology = lithology;
|
}
|
|
public String getLithology()
|
{
|
return lithology;
|
}
|
public void setColour(String colour)
|
{
|
this.colour = colour;
|
}
|
|
public String getColour()
|
{
|
return colour;
|
}
|
public void setDensity(String density)
|
{
|
this.density = density;
|
}
|
|
public String getDensity()
|
{
|
return density;
|
}
|
public void setHumidity(String humidity)
|
{
|
this.humidity = humidity;
|
}
|
|
public String getHumidity()
|
{
|
return humidity;
|
}
|
public void setConsistency(String consistency)
|
{
|
this.consistency = consistency;
|
}
|
|
public String getConsistency()
|
{
|
return consistency;
|
}
|
public void setStrength(String strength)
|
{
|
this.strength = strength;
|
}
|
|
public String getStrength()
|
{
|
return strength;
|
}
|
public void setSectionState(String sectionState)
|
{
|
this.sectionState = sectionState;
|
}
|
|
public String getSectionState()
|
{
|
return sectionState;
|
}
|
public void setRockDeoayRate(String rockDeoayRate)
|
{
|
this.rockDeoayRate = rockDeoayRate;
|
}
|
|
public String getRockDeoayRate()
|
{
|
return rockDeoayRate;
|
}
|
public void setStrataTendency(String strataTendency)
|
{
|
this.strataTendency = strataTendency;
|
}
|
|
public String getStrataTendency()
|
{
|
return strataTendency;
|
}
|
public void setStrataInclination(String strataInclination)
|
{
|
this.strataInclination = strataInclination;
|
}
|
|
public String getStrataInclination()
|
{
|
return strataInclination;
|
}
|
public void setFillerPercent(Double fillerPercent)
|
{
|
this.fillerPercent = fillerPercent;
|
}
|
|
public Double getFillerPercent()
|
{
|
return fillerPercent;
|
}
|
public void setCoreShape(String coreShape)
|
{
|
this.coreShape = coreShape;
|
}
|
|
public String getCoreShape()
|
{
|
return coreShape;
|
}
|
public void setLengthRangeSmall(String lengthRangeSmall)
|
{
|
this.lengthRangeSmall = lengthRangeSmall;
|
}
|
|
public String getLengthRangeSmall()
|
{
|
return lengthRangeSmall;
|
}
|
public void setLengthRangeBig(String lengthRangeBig)
|
{
|
this.lengthRangeBig = lengthRangeBig;
|
}
|
|
public String getLengthRangeBig()
|
{
|
return lengthRangeBig;
|
}
|
public void setLengthRangeMax(String lengthRangeMax)
|
{
|
this.lengthRangeMax = lengthRangeMax;
|
}
|
|
public String getLengthRangeMax()
|
{
|
return lengthRangeMax;
|
}
|
public void setBlockDiameterRangeSmall(String blockDiameterRangeSmall)
|
{
|
this.blockDiameterRangeSmall = blockDiameterRangeSmall;
|
}
|
|
public String getBlockDiameterRangeSmall()
|
{
|
return blockDiameterRangeSmall;
|
}
|
public void setBlockDiameterRangeBig(String blockDiameterRangeBig)
|
{
|
this.blockDiameterRangeBig = blockDiameterRangeBig;
|
}
|
|
public String getBlockDiameterRangeBig()
|
{
|
return blockDiameterRangeBig;
|
}
|
public void setBlockDiameterRangeMax(String blockDiameterRangeMax)
|
{
|
this.blockDiameterRangeMax = blockDiameterRangeMax;
|
}
|
|
public String getBlockDiameterRangeMax()
|
{
|
return blockDiameterRangeMax;
|
}
|
public void setGeologicalOrign(String geologicalOrign)
|
{
|
this.geologicalOrign = geologicalOrign;
|
}
|
|
public String getGeologicalOrign()
|
{
|
return geologicalOrign;
|
}
|
public void setGeologicalYear(String geologicalYear)
|
{
|
this.geologicalYear = geologicalYear;
|
}
|
|
public String getGeologicalYear()
|
{
|
return geologicalYear;
|
}
|
public void setState(String state)
|
{
|
this.state = state;
|
}
|
|
public String getState()
|
{
|
return state;
|
}
|
public void setIncluding(String including)
|
{
|
this.including = including;
|
}
|
|
public String getIncluding()
|
{
|
return including;
|
}
|
public void setInterlayer(String interlayer)
|
{
|
this.interlayer = interlayer;
|
}
|
|
public String getInterlayer()
|
{
|
return interlayer;
|
}
|
public void setFilling(String filling)
|
{
|
this.filling = filling;
|
}
|
|
public String getFilling()
|
{
|
return filling;
|
}
|
public void setParticalShape(String particalShape)
|
{
|
this.particalShape = particalShape;
|
}
|
|
public String getParticalShape()
|
{
|
return particalShape;
|
}
|
public void setParticalLine(String particalLine)
|
{
|
this.particalLine = particalLine;
|
}
|
|
public String getParticalLine()
|
{
|
return particalLine;
|
}
|
public void setParticalSizeDistribution(String particalSizeDistribution)
|
{
|
this.particalSizeDistribution = particalSizeDistribution;
|
}
|
|
public String getParticalSizeDistribution()
|
{
|
return particalSizeDistribution;
|
}
|
public void setdNormalSmall(String dNormalSmall)
|
{
|
this.dNormalSmall = dNormalSmall;
|
}
|
|
public String getdNormalSmall()
|
{
|
return dNormalSmall;
|
}
|
public void setdNormalBig(String dNormalBig)
|
{
|
this.dNormalBig = dNormalBig;
|
}
|
|
public String getdNormalBig()
|
{
|
return dNormalBig;
|
}
|
public void setdLength(String dLength)
|
{
|
this.dLength = dLength;
|
}
|
|
public String getdLength()
|
{
|
return dLength;
|
}
|
public void setdBig(String dBig)
|
{
|
this.dBig = dBig;
|
}
|
|
public String getdBig()
|
{
|
return dBig;
|
}
|
public void setParentRockComp(String parentRockComp)
|
{
|
this.parentRockComp = parentRockComp;
|
}
|
|
public String getParentRockComp()
|
{
|
return parentRockComp;
|
}
|
public void setMineralComp(String mineralComp)
|
{
|
this.mineralComp = mineralComp;
|
}
|
|
public String getMineralComp()
|
{
|
return mineralComp;
|
}
|
public void setHardness(String hardness)
|
{
|
this.hardness = hardness;
|
}
|
|
public String getHardness()
|
{
|
return hardness;
|
}
|
public void setIntegrity(String integrity)
|
{
|
this.integrity = integrity;
|
}
|
|
public String getIntegrity()
|
{
|
return integrity;
|
}
|
public void setBasicQualityLev(String basicQualityLev)
|
{
|
this.basicQualityLev = basicQualityLev;
|
}
|
|
public String getBasicQualityLev()
|
{
|
return basicQualityLev;
|
}
|
public void setDiggability(String diggability)
|
{
|
this.diggability = diggability;
|
}
|
|
public String getDiggability()
|
{
|
return diggability;
|
}
|
public void setStructureType(String structureType)
|
{
|
this.structureType = structureType;
|
}
|
|
public String getStructureType()
|
{
|
return structureType;
|
}
|
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 setRemarks(String remarks)
|
{
|
this.remarks = remarks;
|
}
|
|
public String getRemarks()
|
{
|
return remarks;
|
}
|
public void setDescriptor(String descriptor)
|
{
|
this.descriptor = descriptor;
|
}
|
|
public String getDescriptor()
|
{
|
return descriptor;
|
}
|
public void setDriller(String driller)
|
{
|
this.driller = driller;
|
}
|
|
public String getDriller()
|
{
|
return driller;
|
}
|
public void setLayerImg(String layerImg)
|
{
|
this.layerImg = layerImg;
|
}
|
|
public String getLayerImg()
|
{
|
return layerImg;
|
}
|
public void setLayerVideo(String layerVideo)
|
{
|
this.layerVideo = layerVideo;
|
}
|
|
public String getLayerVideo()
|
{
|
return layerVideo;
|
}
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
public void setMainpart(String mainpart)
|
{
|
this.mainpart = mainpart;
|
}
|
|
public String getMainpart()
|
{
|
return mainpart;
|
}
|
public void setSecondarypart(String secondarypart)
|
{
|
this.secondarypart = secondarypart;
|
}
|
|
public String getSecondarypart()
|
{
|
return secondarypart;
|
}
|
public void setPileyears(String pileyears)
|
{
|
this.pileyears = pileyears;
|
}
|
|
public String getPileyears()
|
{
|
return pileyears;
|
}
|
public void setHomogeneity(String homogeneity)
|
{
|
this.homogeneity = homogeneity;
|
}
|
|
public String getHomogeneity()
|
{
|
return homogeneity;
|
}
|
public void setWatercontent(String watercontent)
|
{
|
this.watercontent = watercontent;
|
}
|
|
public String getWatercontent()
|
{
|
return watercontent;
|
}
|
public void setTopdepth(Double topdepth)
|
{
|
this.topdepth = topdepth;
|
}
|
|
public Double getTopdepth()
|
{
|
return topdepth;
|
}
|
public void setLayerno(String layerno)
|
{
|
this.layerno = layerno;
|
}
|
|
public String getLayerno()
|
{
|
return layerno;
|
}
|
public void setOfficeCode(String officeCode)
|
{
|
this.officeCode = officeCode;
|
}
|
|
public String getOfficeCode()
|
{
|
return officeCode;
|
}
|
public void setIshistory(String ishistory)
|
{
|
this.ishistory = ishistory;
|
}
|
|
public String getIshistory()
|
{
|
return ishistory;
|
}
|
public void setRecordNo(String recordNo)
|
{
|
this.recordNo = recordNo;
|
}
|
|
public String getRecordNo()
|
{
|
return recordNo;
|
}
|
public void setRecordType(String recordType)
|
{
|
this.recordType = recordType;
|
}
|
|
public String getRecordType()
|
{
|
return recordType;
|
}
|
public void setGeologicTime(String geologicTime)
|
{
|
this.geologicTime = geologicTime;
|
}
|
|
public String getGeologicTime()
|
{
|
return geologicTime;
|
}
|
public void setAlluvial(String alluvial)
|
{
|
this.alluvial = alluvial;
|
}
|
|
public String getAlluvial()
|
{
|
return alluvial;
|
}
|
public void setLargeDiameterRangeSmall(String largeDiameterRangeSmall)
|
{
|
this.largeDiameterRangeSmall = largeDiameterRangeSmall;
|
}
|
|
public String getLargeDiameterRangeSmall()
|
{
|
return largeDiameterRangeSmall;
|
}
|
public void setLargeDiameterRangeBig(String largeDiameterRangeBig)
|
{
|
this.largeDiameterRangeBig = largeDiameterRangeBig;
|
}
|
|
public String getLargeDiameterRangeBig()
|
{
|
return largeDiameterRangeBig;
|
}
|
public void setMainIngredients(String mainIngredients)
|
{
|
this.mainIngredients = mainIngredients;
|
}
|
|
public String getMainIngredients()
|
{
|
return mainIngredients;
|
}
|
public void setSecondIngredients(String secondIngredients)
|
{
|
this.secondIngredients = secondIngredients;
|
}
|
|
public String getSecondIngredients()
|
{
|
return secondIngredients;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("projNo", getProjNo())
|
.append("holeNo", getHoleNo())
|
.append("bottomDepth", getBottomDepth())
|
.append("rockType", getRockType())
|
.append("rockName", getRockName())
|
.append("mixType", getMixType())
|
.append("mixName", getMixName())
|
.append("lithology", getLithology())
|
.append("colour", getColour())
|
.append("density", getDensity())
|
.append("humidity", getHumidity())
|
.append("consistency", getConsistency())
|
.append("strength", getStrength())
|
.append("sectionState", getSectionState())
|
.append("rockDeoayRate", getRockDeoayRate())
|
.append("strataTendency", getStrataTendency())
|
.append("strataInclination", getStrataInclination())
|
.append("fillerPercent", getFillerPercent())
|
.append("coreShape", getCoreShape())
|
.append("lengthRangeSmall", getLengthRangeSmall())
|
.append("lengthRangeBig", getLengthRangeBig())
|
.append("lengthRangeMax", getLengthRangeMax())
|
.append("blockDiameterRangeSmall", getBlockDiameterRangeSmall())
|
.append("blockDiameterRangeBig", getBlockDiameterRangeBig())
|
.append("blockDiameterRangeMax", getBlockDiameterRangeMax())
|
.append("geologicalOrign", getGeologicalOrign())
|
.append("geologicalYear", getGeologicalYear())
|
.append("state", getState())
|
.append("including", getIncluding())
|
.append("interlayer", getInterlayer())
|
.append("filling", getFilling())
|
.append("particalShape", getParticalShape())
|
.append("particalLine", getParticalLine())
|
.append("particalSizeDistribution", getParticalSizeDistribution())
|
.append("dNormalSmall", getdNormalSmall())
|
.append("dNormalBig", getdNormalBig())
|
.append("dLength", getdLength())
|
.append("dBig", getdBig())
|
.append("parentRockComp", getParentRockComp())
|
.append("mineralComp", getMineralComp())
|
.append("hardness", getHardness())
|
.append("integrity", getIntegrity())
|
.append("basicQualityLev", getBasicQualityLev())
|
.append("diggability", getDiggability())
|
.append("structureType", getStructureType())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("locationTime", getLocationTime())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("remarks", getRemarks())
|
.append("descriptor", getDescriptor())
|
.append("driller", getDriller())
|
.append("layerImg", getLayerImg())
|
.append("layerVideo", getLayerVideo())
|
.append("delFlag", getDelFlag())
|
.append("mainpart", getMainpart())
|
.append("secondarypart", getSecondarypart())
|
.append("pileyears", getPileyears())
|
.append("homogeneity", getHomogeneity())
|
.append("watercontent", getWatercontent())
|
.append("topdepth", getTopdepth())
|
.append("layerno", getLayerno())
|
.append("officeCode", getOfficeCode())
|
.append("ishistory", getIshistory())
|
.append("recordNo", getRecordNo())
|
.append("recordType", getRecordType())
|
.append("geologicTime", getGeologicTime())
|
.append("alluvial", getAlluvial())
|
.append("largeDiameterRangeSmall", getLargeDiameterRangeSmall())
|
.append("largeDiameterRangeBig", getLargeDiameterRangeBig())
|
.append("mainIngredients", getMainIngredients())
|
.append("secondIngredients", getSecondIngredients())
|
.toString();
|
}
|
}
|