package com.javaweb.geo.domain; import com.fasterxml.jackson.annotation.JsonFormat; 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; import java.util.List; /** * 记录-岩土对象 js_hole_yantu * * @author zmk * @date 2022-10-20 */ public class HoleYantu extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键 */ private String ids; /** 编号 */ private String code; public String getCode() { return code; } public void setCode(String code) { this.code = code; } /** 项目id */ @Excel(name = "项目id") private String projectId; /** 钻孔id */ @Excel(name = "钻孔id") private String holeId; /** 岩土类型 */ @Excel(name = "岩土类型") private String frequencyType; /** 岩土定名 */ @Excel(name = "岩土定名") private String layerName; /** 地层成因 */ @Excel(name = "地层成因") private String causes; /** 年代 */ @Excel(name = "年代") private String era; /** 起始深度 */ @Excel(name = "起始深度") private Double beginDepth; /** 终止深度 */ @Excel(name = "终止深度") private Double endDepth; /** 标题 */ @Excel(name = "标题") private String title; /** 描述员(必填人员id) */ @Excel(name = "描述员", readConverterExp = "必填人员id") private String recordPerson; /** 描述员姓名 */ private String recordPersonName; /** 描述备注 */ @Excel(name = "描述备注") private String description; /** 定位经度 */ @Excel(name = "定位经度") private Double longitude; /** 定位纬度 */ @Excel(name = "定位纬度") private Double latitude; /** 定位时间 */ @Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd HH-mm-ss",timezone = "GMT+8") private Date gpsTime; /** 是否删除 */ @Excel(name = "是否删除") private Boolean isDelete; /** 无法定位的地点 */ @Excel(name = "无法定位的地点") private String position; /** 无法定位的时间 */ @Excel(name = "无法定位的时间", width = 30, dateFormat = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd HH-mm-ss",timezone = "GMT+8") private Date locateTime; /** 无法定位的原因 */ @Excel(name = "无法定位的原因") private String reason; /** 现场拍照1 */ @Excel(name = "现场拍照1") private String pic1; /** 现场拍照2 */ @Excel(name = "现场拍照2") private String pic2; /** 现场拍照3 */ @Excel(name = "现场拍照3") private String pic3; /** 主要成分 */ @Excel(name = "主要成分") private String zycf; /** 次要成份 */ @Excel(name = "次要成份") private String cycf; /** 堆积年代 */ @Excel(name = "堆积年代") private String djnd; /** 密实度 */ @Excel(name = "密实度") private String msd; /** 均匀性 */ @Excel(name = "均匀性") private String jyx; /** 物质成份 */ @Excel(name = "物质成份") private String wzcf; /** 颜色 */ @Excel(name = "颜色") private String ys; /** 状态 */ @Excel(name = "状态") private String zt; /** 包含物 */ @Excel(name = "包含物") private String bhw; /** 夹层 */ @Excel(name = "夹层") private String jc; /** 湿度 */ @Excel(name = "湿度") private String sd; /** 粉土分层厚度 */ @Excel(name = "粉土分层厚度") private String ftfchd; /** 粉质黏土分层厚度 */ @Excel(name = "粉质黏土分层厚度") private String fzntfchd; /** 孔隙 */ @Excel(name = "孔隙") private String kx; /** 垂直节理 */ @Excel(name = "垂直节理") private String czjl; /** 颗粒组成 */ @Excel(name = "颗粒组成") private String klzc; /** 含水量 */ @Excel(name = "含水量") private String hsl; /** 充填物 */ @Excel(name = "充填物") private String tcw; /** 颗粒形状 */ @Excel(name = "颗粒形状") private String klxz; /** 颗粒排列 */ @Excel(name = "颗粒排列") private String klpl; /** 颗粒级配 */ @Excel(name = "颗粒级配") private String kljp; /** 一般粒径小 */ @Excel(name = "一般粒径小") private String ybljx; /** 一般粒径大 */ @Excel(name = "一般粒径大") private String ybljd; /** 较大粒径小 */ @Excel(name = "较大粒径小") private String jdljx; /** 较大粒径大 */ @Excel(name = "较大粒径大") private String jdljd; /** 最大粒径 */ @Excel(name = "最大粒径") private String zdlj; /** 母岩成份 */ @Excel(name = "母岩成份") private String mycf; /** 风化程度 */ @Excel(name = "风化程度") private String fhcd; /** 矿物组成 */ @Excel(name = "矿物组成") private String kwzc; /** 坚硬程度 */ @Excel(name = "坚硬程度") private String jycd; /** 完整程度 */ @Excel(name = "完整程度") private String wzcd; /** 基本质量等级 */ @Excel(name = "基本质量等级") private String jbzldj; /** 可挖性 */ @Excel(name = "可挖性") private String kwx; /** 结构类型 */ @Excel(name = "结构类型") private String jglx; /** 关联媒体表 */ private List holeMediaList; public List getHoleMediaList() { return holeMediaList; } public void setHoleMediaList(List holeMediaList) { this.holeMediaList = holeMediaList; } public void setIds(String ids) { this.ids = ids; } public String getIds() { return ids; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectId() { return projectId; } public void setHoleId(String holeId) { this.holeId = holeId; } public String getHoleId() { return holeId; } public void setFrequencyType(String frequencyType) { this.frequencyType = frequencyType; } public String getFrequencyType() { return frequencyType; } public void setLayerName(String layerName) { this.layerName = layerName; } public String getLayerName() { return layerName; } public void setCauses(String causes) { this.causes = causes; } public String getCauses() { return causes; } public void setEra(String era) { this.era = era; } public String getEra() { return era; } public void setBeginDepth(Double beginDepth) { this.beginDepth = beginDepth; } public Double getBeginDepth() { return beginDepth; } public void setEndDepth(Double endDepth) { this.endDepth = endDepth; } public Double getEndDepth() { return endDepth; } public void setTitle(String title) { this.title = title; } public String getTitle() { return title; } public void setRecordPerson(String recordPerson) { this.recordPerson = recordPerson; } public String getRecordPerson() { return recordPerson; } public void setDescription(String description) { this.description = description; } public String getDescription() { return description; } 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 setGpsTime(Date gpsTime) { this.gpsTime = gpsTime; } public Date getGpsTime() { return gpsTime; } public void setIsDelete(Boolean isDelete) { this.isDelete = isDelete; } public Boolean getIsDelete() { return isDelete; } public void setPosition(String position) { this.position = position; } public String getPosition() { return position; } public void setLocateTime(Date locateTime) { this.locateTime = locateTime; } public Date getLocateTime() { return locateTime; } public void setReason(String reason) { this.reason = reason; } public String getReason() { return reason; } public void setPic1(String pic1) { this.pic1 = pic1; } public String getPic1() { return pic1; } public void setPic2(String pic2) { this.pic2 = pic2; } public String getPic2() { return pic2; } public void setPic3(String pic3) { this.pic3 = pic3; } public String getPic3() { return pic3; } public void setZycf(String zycf) { this.zycf = zycf; } public String getZycf() { return zycf; } public void setCycf(String cycf) { this.cycf = cycf; } public String getCycf() { return cycf; } public void setDjnd(String djnd) { this.djnd = djnd; } public String getDjnd() { return djnd; } public void setMsd(String msd) { this.msd = msd; } public String getMsd() { return msd; } public void setJyx(String jyx) { this.jyx = jyx; } public String getJyx() { return jyx; } public void setWzcf(String wzcf) { this.wzcf = wzcf; } public String getWzcf() { return wzcf; } public void setYs(String ys) { this.ys = ys; } public String getYs() { return ys; } public void setZt(String zt) { this.zt = zt; } public String getZt() { return zt; } public void setBhw(String bhw) { this.bhw = bhw; } public String getBhw() { return bhw; } public void setJc(String jc) { this.jc = jc; } public String getJc() { return jc; } public void setSd(String sd) { this.sd = sd; } public String getSd() { return sd; } public void setFtfchd(String ftfchd) { this.ftfchd = ftfchd; } public String getFtfchd() { return ftfchd; } public void setFzntfchd(String fzntfchd) { this.fzntfchd = fzntfchd; } public String getFzntfchd() { return fzntfchd; } public void setKx(String kx) { this.kx = kx; } public String getKx() { return kx; } public void setCzjl(String czjl) { this.czjl = czjl; } public String getCzjl() { return czjl; } public void setKlzc(String klzc) { this.klzc = klzc; } public String getKlzc() { return klzc; } public void setHsl(String hsl) { this.hsl = hsl; } public String getHsl() { return hsl; } public void setTcw(String tcw) { this.tcw = tcw; } public String getTcw() { return tcw; } public void setKlxz(String klxz) { this.klxz = klxz; } public String getKlxz() { return klxz; } public void setKlpl(String klpl) { this.klpl = klpl; } public String getKlpl() { return klpl; } public void setKljp(String kljp) { this.kljp = kljp; } public String getKljp() { return kljp; } public void setYbljx(String ybljx) { this.ybljx = ybljx; } public String getYbljx() { return ybljx; } public void setYbljd(String ybljd) { this.ybljd = ybljd; } public String getYbljd() { return ybljd; } public void setJdljx(String jdljx) { this.jdljx = jdljx; } public String getJdljx() { return jdljx; } public void setJdljd(String jdljd) { this.jdljd = jdljd; } public String getJdljd() { return jdljd; } public void setZdlj(String zdlj) { this.zdlj = zdlj; } public String getZdlj() { return zdlj; } public void setMycf(String mycf) { this.mycf = mycf; } public String getMycf() { return mycf; } public void setFhcd(String fhcd) { this.fhcd = fhcd; } public String getFhcd() { return fhcd; } public void setKwzc(String kwzc) { this.kwzc = kwzc; } public String getKwzc() { return kwzc; } public void setJycd(String jycd) { this.jycd = jycd; } public String getJycd() { return jycd; } public void setWzcd(String wzcd) { this.wzcd = wzcd; } public String getWzcd() { return wzcd; } public void setJbzldj(String jbzldj) { this.jbzldj = jbzldj; } public String getJbzldj() { return jbzldj; } public void setKwx(String kwx) { this.kwx = kwx; } public String getKwx() { return kwx; } public void setJglx(String jglx) { this.jglx = jglx; } public String getJglx() { return jglx; } public String getRecordPersonName() { return recordPersonName; } public void setRecordPersonName(String recordPersonName) { this.recordPersonName = recordPersonName; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("ids", getIds()) .append("projectId", getProjectId()) .append("holeId", getHoleId()) .append("frequencyType", getFrequencyType()) .append("layerName", getLayerName()) .append("causes", getCauses()) .append("era", getEra()) .append("beginDepth", getBeginDepth()) .append("endDepth", getEndDepth()) .append("title", getTitle()) .append("createTime", getCreateTime()) .append("recordPerson", getRecordPerson()) .append("description", getDescription()) .append("longitude", getLongitude()) .append("latitude", getLatitude()) .append("gpsTime", getGpsTime()) .append("isDelete", getIsDelete()) .append("position", getPosition()) .append("locateTime", getLocateTime()) .append("reason", getReason()) .append("pic1", getPic1()) .append("pic2", getPic2()) .append("pic3", getPic3()) .append("zycf", getZycf()) .append("cycf", getCycf()) .append("djnd", getDjnd()) .append("msd", getMsd()) .append("jyx", getJyx()) .append("wzcf", getWzcf()) .append("ys", getYs()) .append("zt", getZt()) .append("bhw", getBhw()) .append("jc", getJc()) .append("sd", getSd()) .append("ftfchd", getFtfchd()) .append("fzntfchd", getFzntfchd()) .append("kx", getKx()) .append("czjl", getCzjl()) .append("klzc", getKlzc()) .append("hsl", getHsl()) .append("tcw", getTcw()) .append("klxz", getKlxz()) .append("klpl", getKlpl()) .append("kljp", getKljp()) .append("ybljx", getYbljx()) .append("ybljd", getYbljd()) .append("jdljx", getJdljx()) .append("jdljd", getJdljd()) .append("zdlj", getZdlj()) .append("mycf", getMycf()) .append("fhcd", getFhcd()) .append("kwzc", getKwzc()) .append("jycd", getJycd()) .append("wzcd", getWzcd()) .append("jbzldj", getJbzldj()) .append("kwx", getKwx()) .append("jglx", getJglx()) .toString(); } }