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_return_info
|
*
|
* @author zzf
|
* @date 2022-03-25
|
*/
|
public class ReturnInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 项目编号 */
|
@Excel(name = "项目编号")
|
private String projNo;
|
|
/** 钻孔编号 */
|
@Excel(name = "钻孔编号")
|
private String holeNo;
|
|
/** 回次数 */
|
@Excel(name = "回次数")
|
private String returnNum;
|
|
/** null */
|
@Excel(name = "null")
|
private String officeCode;
|
|
/** 起始深度 */
|
@Excel(name = "起始深度")
|
private Double startDepth;
|
|
/** 终止深度 */
|
@Excel(name = "终止深度")
|
private Double endDepth;
|
|
/** 进尺 */
|
@Excel(name = "进尺")
|
private Double footage;
|
|
/** 岩芯长度 */
|
@Excel(name = "岩芯长度")
|
private Double coreLength;
|
|
/** 岩芯采取率 */
|
@Excel(name = "岩芯采取率")
|
private Double coreRate;
|
|
/** 岩石质量指标 */
|
@Excel(name = "岩石质量指标")
|
private Double rockQualityQuota;
|
|
/** 护壁方法 */
|
@Excel(name = "护壁方法")
|
private String wallProtectMethod;
|
|
/** 钻进方法 */
|
@Excel(name = "钻进方法")
|
private String drillMethod;
|
|
/** 钻孔孔径 */
|
@Excel(name = "钻孔孔径")
|
private Double boreDiameter;
|
|
/** 钻进异常描述 */
|
@Excel(name = "钻进异常描述")
|
private String drillAbnormalDesc;
|
|
/** 经度 */
|
@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 returnImg;
|
|
/** 回次视频 */
|
@Excel(name = "回次视频")
|
private String returnVideo;
|
|
/** 删除标记,0正常,1删除 */
|
private String delFlag;
|
|
/** null */
|
@Excel(name = "null")
|
private String ishistory;
|
|
/** 记录编号 */
|
@Excel(name = "记录编号")
|
private String recordNo;
|
|
/** 记录类型 */
|
@Excel(name = "记录类型")
|
private String recordType;
|
|
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 setReturnNum(String returnNum)
|
{
|
this.returnNum = returnNum;
|
}
|
|
public String getReturnNum()
|
{
|
return returnNum;
|
}
|
public void setOfficeCode(String officeCode)
|
{
|
this.officeCode = officeCode;
|
}
|
|
public String getOfficeCode()
|
{
|
return officeCode;
|
}
|
public void setStartDepth(Double startDepth)
|
{
|
this.startDepth = startDepth;
|
}
|
|
public Double getStartDepth()
|
{
|
return startDepth;
|
}
|
public void setEndDepth(Double endDepth)
|
{
|
this.endDepth = endDepth;
|
}
|
|
public Double getEndDepth()
|
{
|
return endDepth;
|
}
|
public void setFootage(Double footage)
|
{
|
this.footage = footage;
|
}
|
|
public Double getFootage()
|
{
|
return footage;
|
}
|
public void setCoreLength(Double coreLength)
|
{
|
this.coreLength = coreLength;
|
}
|
|
public Double getCoreLength()
|
{
|
return coreLength;
|
}
|
public void setCoreRate(Double coreRate)
|
{
|
this.coreRate = coreRate;
|
}
|
|
public Double getCoreRate()
|
{
|
return coreRate;
|
}
|
public void setRockQualityQuota(Double rockQualityQuota)
|
{
|
this.rockQualityQuota = rockQualityQuota;
|
}
|
|
public Double getRockQualityQuota()
|
{
|
return rockQualityQuota;
|
}
|
public void setWallProtectMethod(String wallProtectMethod)
|
{
|
this.wallProtectMethod = wallProtectMethod;
|
}
|
|
public String getWallProtectMethod()
|
{
|
return wallProtectMethod;
|
}
|
public void setDrillMethod(String drillMethod)
|
{
|
this.drillMethod = drillMethod;
|
}
|
|
public String getDrillMethod()
|
{
|
return drillMethod;
|
}
|
public void setBoreDiameter(Double boreDiameter)
|
{
|
this.boreDiameter = boreDiameter;
|
}
|
|
public Double getBoreDiameter()
|
{
|
return boreDiameter;
|
}
|
public void setDrillAbnormalDesc(String drillAbnormalDesc)
|
{
|
this.drillAbnormalDesc = drillAbnormalDesc;
|
}
|
|
public String getDrillAbnormalDesc()
|
{
|
return drillAbnormalDesc;
|
}
|
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 setReturnImg(String returnImg)
|
{
|
this.returnImg = returnImg;
|
}
|
|
public String getReturnImg()
|
{
|
return returnImg;
|
}
|
public void setReturnVideo(String returnVideo)
|
{
|
this.returnVideo = returnVideo;
|
}
|
|
public String getReturnVideo()
|
{
|
return returnVideo;
|
}
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
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;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("projNo", getProjNo())
|
.append("holeNo", getHoleNo())
|
.append("returnNum", getReturnNum())
|
.append("officeCode", getOfficeCode())
|
.append("startDepth", getStartDepth())
|
.append("endDepth", getEndDepth())
|
.append("footage", getFootage())
|
.append("coreLength", getCoreLength())
|
.append("coreRate", getCoreRate())
|
.append("rockQualityQuota", getRockQualityQuota())
|
.append("wallProtectMethod", getWallProtectMethod())
|
.append("drillMethod", getDrillMethod())
|
.append("boreDiameter", getBoreDiameter())
|
.append("drillAbnormalDesc", getDrillAbnormalDesc())
|
.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("returnImg", getReturnImg())
|
.append("returnVideo", getReturnVideo())
|
.append("delFlag", getDelFlag())
|
.append("ishistory", getIshistory())
|
.append("recordNo", getRecordNo())
|
.append("recordType", getRecordType())
|
.toString();
|
}
|
}
|