From 64ad299aca8826cad34f44a5dafac55ed84a36e5 Mon Sep 17 00:00:00 2001
From: suerwei <18810552194@163.com>
Date: 星期二, 21 五月 2024 14:11:27 +0800
Subject: [PATCH] 钻孔日志模块1

---
 javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/HoleLog.java |  147 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 147 insertions(+), 0 deletions(-)

diff --git a/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/HoleLog.java b/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/HoleLog.java
new file mode 100644
index 0000000..f1b7162
--- /dev/null
+++ b/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/HoleLog.java
@@ -0,0 +1,147 @@
+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();
+    }
+}

--
Gitblit v1.9.1