New file |
| | |
| | | package com.javaweb.geo.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_hole_log |
| | | * |
| | | * @author cxy |
| | | * @date 2024-05-21 |
| | | */ |
| | | public class HoleLog extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键 */ |
| | | private String id; |
| | | |
| | | /** 项目id */ |
| | | private String projectId; |
| | | |
| | | /** 钻孔id */ |
| | | private String holeId; |
| | | |
| | | /** 钻孔编号 */ |
| | | @Excel(name = "钻孔编号") |
| | | private String code; |
| | | |
| | | /** 起始深度 */ |
| | | @Excel(name = "起始深度") |
| | | private Double beginDepth; |
| | | |
| | | /** 终止深度 */ |
| | | @Excel(name = "终止深度") |
| | | private Double endDepth; |
| | | |
| | | /** 描述员 */ |
| | | @Excel(name = "描述员") |
| | | private String recordPerson; |
| | | |
| | | /** 描述备注 */ |
| | | @Excel(name = "描述备注") |
| | | private String description; |
| | | |
| | | /** 是否删除 */ |
| | | private String isDelete; |
| | | |
| | | public void setId(String id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getId() |
| | | { |
| | | return id; |
| | | } |
| | | 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 setCode(String code) |
| | | { |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getCode() |
| | | { |
| | | return code; |
| | | } |
| | | 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 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 setIsDelete(String isDelete) |
| | | { |
| | | this.isDelete = isDelete; |
| | | } |
| | | |
| | | public String getIsDelete() |
| | | { |
| | | return isDelete; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("projectId", getProjectId()) |
| | | .append("holeId", getHoleId()) |
| | | .append("code", getCode()) |
| | | .append("beginDepth", getBeginDepth()) |
| | | .append("endDepth", getEndDepth()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("recordPerson", getRecordPerson()) |
| | | .append("description", getDescription()) |
| | | .append("isDelete", getIsDelete()) |
| | | .toString(); |
| | | } |
| | | } |