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_test_info * * @author zzf * @date 2022-03-25 */ public class TestInfo 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 testNo; /** 测试方法 */ @Excel(name = "测试方法") private String testMethod; /** 钻杆长度 */ @Excel(name = "钻杆长度") private Double pipeLenth; /** 预打深度起始 */ @Excel(name = "预打深度起始") private Double expectDepthStart; /** 预打深度终止 */ @Excel(name = "预打深度终止") private Double expectDepthEnd; /** 第一次深度起始/动探等起始深度 */ @Excel(name = "第一次深度起始/动探等起始深度") private Double firstDepthStart; /** 第一次深度终止/动探等终止深度 */ @Excel(name = "第一次深度终止/动探等终止深度") private Double firstDepthEnd; /** 第二次深度起始 */ @Excel(name = "第二次深度起始") private Double secondDepthStart; /** 第二次深度终止 */ @Excel(name = "第二次深度终止") private Double secondDepthEnd; /** 第三次深度起始 */ @Excel(name = "第三次深度起始") private Double thirdDepthStart; /** 第三次深度终止 */ @Excel(name = "第三次深度终止") private Double thirdDepthEnd; /** 预打锤击次数 */ @Excel(name = "预打锤击次数") private Long expectHammerTimes; /** 第一次锤击次数/动探等测试值 */ @Excel(name = "第一次锤击次数/动探等测试值") private Long firstHammerTimes; /** 第二次锤击次数 */ @Excel(name = "第二次锤击次数") private Long secondHammerTimes; /** 第三次锤击次数 */ @Excel(name = "第三次锤击次数") private Long thirdHammerTimes; /** 总锤击次数 */ @Excel(name = "总锤击次数") private Long totalTimes; /** 进尺和 */ @Excel(name = "进尺和") private Double footageSum; /** 经度 */ @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 testImg; /** 测试视频 */ @Excel(name = "测试视频") private String testVideo; /** 删除标记,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 setTestNo(String testNo) { this.testNo = testNo; } public String getTestNo() { return testNo; } public void setTestMethod(String testMethod) { this.testMethod = testMethod; } public String getTestMethod() { return testMethod; } public void setPipeLenth(Double pipeLenth) { this.pipeLenth = pipeLenth; } public Double getPipeLenth() { return pipeLenth; } public void setExpectDepthStart(Double expectDepthStart) { this.expectDepthStart = expectDepthStart; } public Double getExpectDepthStart() { return expectDepthStart; } public void setExpectDepthEnd(Double expectDepthEnd) { this.expectDepthEnd = expectDepthEnd; } public Double getExpectDepthEnd() { return expectDepthEnd; } public void setFirstDepthStart(Double firstDepthStart) { this.firstDepthStart = firstDepthStart; } public Double getFirstDepthStart() { return firstDepthStart; } public void setFirstDepthEnd(Double firstDepthEnd) { this.firstDepthEnd = firstDepthEnd; } public Double getFirstDepthEnd() { return firstDepthEnd; } public void setSecondDepthStart(Double secondDepthStart) { this.secondDepthStart = secondDepthStart; } public Double getSecondDepthStart() { return secondDepthStart; } public void setSecondDepthEnd(Double secondDepthEnd) { this.secondDepthEnd = secondDepthEnd; } public Double getSecondDepthEnd() { return secondDepthEnd; } public void setThirdDepthStart(Double thirdDepthStart) { this.thirdDepthStart = thirdDepthStart; } public Double getThirdDepthStart() { return thirdDepthStart; } public void setThirdDepthEnd(Double thirdDepthEnd) { this.thirdDepthEnd = thirdDepthEnd; } public Double getThirdDepthEnd() { return thirdDepthEnd; } public void setExpectHammerTimes(Long expectHammerTimes) { this.expectHammerTimes = expectHammerTimes; } public Long getExpectHammerTimes() { return expectHammerTimes; } public void setFirstHammerTimes(Long firstHammerTimes) { this.firstHammerTimes = firstHammerTimes; } public Long getFirstHammerTimes() { return firstHammerTimes; } public void setSecondHammerTimes(Long secondHammerTimes) { this.secondHammerTimes = secondHammerTimes; } public Long getSecondHammerTimes() { return secondHammerTimes; } public void setThirdHammerTimes(Long thirdHammerTimes) { this.thirdHammerTimes = thirdHammerTimes; } public Long getThirdHammerTimes() { return thirdHammerTimes; } public void setTotalTimes(Long totalTimes) { this.totalTimes = totalTimes; } public Long getTotalTimes() { return totalTimes; } public void setFootageSum(Double footageSum) { this.footageSum = footageSum; } public Double getFootageSum() { return footageSum; } 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 setTestImg(String testImg) { this.testImg = testImg; } public String getTestImg() { return testImg; } public void setTestVideo(String testVideo) { this.testVideo = testVideo; } public String getTestVideo() { return testVideo; } 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("testNo", getTestNo()) .append("testMethod", getTestMethod()) .append("pipeLenth", getPipeLenth()) .append("expectDepthStart", getExpectDepthStart()) .append("expectDepthEnd", getExpectDepthEnd()) .append("firstDepthStart", getFirstDepthStart()) .append("firstDepthEnd", getFirstDepthEnd()) .append("secondDepthStart", getSecondDepthStart()) .append("secondDepthEnd", getSecondDepthEnd()) .append("thirdDepthStart", getThirdDepthStart()) .append("thirdDepthEnd", getThirdDepthEnd()) .append("expectHammerTimes", getExpectHammerTimes()) .append("firstHammerTimes", getFirstHammerTimes()) .append("secondHammerTimes", getSecondHammerTimes()) .append("thirdHammerTimes", getThirdHammerTimes()) .append("totalTimes", getTotalTimes()) .append("footageSum", getFootageSum()) .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("testImg", getTestImg()) .append("testVideo", getTestVideo()) .append("delFlag", getDelFlag()) .append("ishistory", getIshistory()) .append("recordNo", getRecordNo()) .append("recordType", getRecordType()) .toString(); } }