package com.javaweb.hydrology.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_hydrology_well_info * * @author zmk * @date 2022-11-28 */ public class HydrologyWellInfo extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键 */ private Long id; /** 编号 */ @Excel(name = "编号") private String num; /** 比例尺 */ @Excel(name = "比例尺") private String scales; /** 井位置 */ @Excel(name = "井位置") private String address; /** 经度 */ @Excel(name = "经度") private Double lng; /** 纬度 */ @Excel(name = "纬度") private Double lat; /** 测井日期 */ @Excel(name = "测井日期") private String wellDate; /** 施工单位 */ @Excel(name = "施工单位") private String constructionUnit; /** 井深(m) */ @Excel(name = "井深", readConverterExp = "井深(m)") private Double depth; /** 测量井段 */ @Excel(name = "测量井段") private String wellType; /** 钻头程序 */ @Excel(name = "钻头程序") private String wellBit; /** 套管程序 */ @Excel(name = "套管程序") private String wellCasing; /** 水井性质 */ @Excel(name = "水井性质") private String wellNature; /** 电阻率 */ @Excel(name = "电阻率") private String eleResistivity; /** 仪器型号 */ @Excel(name = "仪器型号") private String machineType; /** 解释平台 */ @Excel(name = "解释平台") private String interpretation; /** 解释人员 */ @Excel(name = "解释人员") private String userExplain; /** 校对人员 */ @Excel(name = "校对人员") private String userProof; /** 审核人员 */ @Excel(name = "审核人员") private String userCheck; /** 勘察公司 */ @Excel(name = "勘察公司") private String surveyCompany; /** 勘察公司地址 */ @Excel(name = "勘察公司地址") private String surveyCompanyAddr; /** 工程师 */ @Excel(name = "工程师") private String surveyEngineer; /** 联系方式 */ @Excel(name = "联系方式") private String surveyTel; public void setId(Long id) { this.id = id; } public Long getId() { return id; } public void setNum(String num) { this.num = num; } public String getNum() { return num; } public void setAddress(String address) { this.address = address; } public String getAddress() { return address; } public void setLng(Double lng) { this.lng = lng; } public Double getLng() { return lng; } public void setLat(Double lat) { this.lat = lat; } public Double getLat() { return lat; } public void setWellDate(String wellDate) { this.wellDate = wellDate; } public String getWellDate() { return wellDate; } public void setConstructionUnit(String constructionUnit) { this.constructionUnit = constructionUnit; } public String getConstructionUnit() { return constructionUnit; } public void setDepth(Double depth) { this.depth = depth; } public Double getDepth() { return depth; } public void setWellType(String wellType) { this.wellType = wellType; } public String getWellType() { return wellType; } public void setWellBit(String wellBit) { this.wellBit = wellBit; } public String getWellBit() { return wellBit; } public void setWellCasing(String wellCasing) { this.wellCasing = wellCasing; } public String getWellCasing() { return wellCasing; } public void setWellNature(String wellNature) { this.wellNature = wellNature; } public String getWellNature() { return wellNature; } public void setEleResistivity(String eleResistivity) { this.eleResistivity = eleResistivity; } public String getEleResistivity() { return eleResistivity; } public void setMachineType(String machineType) { this.machineType = machineType; } public String getMachineType() { return machineType; } public void setInterpretation(String interpretation) { this.interpretation = interpretation; } public String getInterpretation() { return interpretation; } public void setUserExplain(String userExplain) { this.userExplain = userExplain; } public String getUserExplain() { return userExplain; } public void setUserProof(String userProof) { this.userProof = userProof; } public String getUserProof() { return userProof; } public void setUserCheck(String userCheck) { this.userCheck = userCheck; } public String getUserCheck() { return userCheck; } public void setSurveyCompany(String surveyCompany) { this.surveyCompany = surveyCompany; } public String getSurveyCompany() { return surveyCompany; } public void setSurveyCompanyAddr(String surveyCompanyAddr) { this.surveyCompanyAddr = surveyCompanyAddr; } public String getSurveyCompanyAddr() { return surveyCompanyAddr; } public void setSurveyEngineer(String surveyEngineer) { this.surveyEngineer = surveyEngineer; } public String getSurveyEngineer() { return surveyEngineer; } public void setSurveyTel(String surveyTel) { this.surveyTel = surveyTel; } public String getSurveyTel() { return surveyTel; } public String getScales() { return scales; } public void setScales(String scales) { this.scales = scales; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("id", getId()) .append("num", getNum()) .append("scales", getScales()) .append("address", getAddress()) .append("lng", getLng()) .append("lat", getLat()) .append("wellDate", getWellDate()) .append("constructionUnit", getConstructionUnit()) .append("depth", getDepth()) .append("wellType", getWellType()) .append("wellBit", getWellBit()) .append("wellCasing", getWellCasing()) .append("wellNature", getWellNature()) .append("eleResistivity", getEleResistivity()) .append("machineType", getMachineType()) .append("interpretation", getInterpretation()) .append("userExplain", getUserExplain()) .append("userProof", getUserProof()) .append("userCheck", getUserCheck()) .append("surveyCompany", getSurveyCompany()) .append("surveyCompanyAddr", getSurveyCompanyAddr()) .append("surveyEngineer", getSurveyEngineer()) .append("surveyTel", getSurveyTel()) .append("remark", getRemark()) .toString(); } }