From 2ec977b1ca933293c6e974a0a495eb726648330c Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 11 十二月 2024 10:07:59 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java |  215 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 215 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java b/src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java
new file mode 100644
index 0000000..87bc8b7
--- /dev/null
+++ b/src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java
@@ -0,0 +1,215 @@
+package com.lf.server.entity.bs;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.lf.server.entity.all.BaseGeoEntity;
+import lombok.*;
+
+import java.math.BigDecimal;
+import java.sql.Timestamp;
+import java.time.LocalDate;
+
+/**
+ * Sexplorationpoint
+ * @author WWW
+ */
+@Data
+@AllArgsConstructor
+@TableName("bs.s_explorationpoint")
+@EqualsAndHashCode(callSuper = false)
+public class SexplorationpointEntity extends BaseGeoEntity {
+    private static final long serialVersionUID = 637485277670195968L;
+
+    private String exppointid;
+
+    private BigDecimal x;
+
+    private BigDecimal y;
+
+    private BigDecimal elevation;
+
+    private BigDecimal holedepth;
+
+    private String gwaterdep;
+
+    private String wamplitude;
+
+    private String drilltype;
+
+    private String segname;
+
+    private String projname;
+
+    private String pipename;
+
+    private String belongs;
+
+    private String belongsid;
+
+    private String datastatus;
+
+    private String remarks;
+
+    private String version;
+
+    private String datastage;
+
+    private String photono;
+
+    private String workno;
+
+    public SexplorationpointEntity() {
+    }
+
+    public String getExppointid() {
+        return exppointid;
+    }
+
+    public void setExppointid(String exppointid) {
+        this.exppointid = exppointid;
+    }
+
+    public BigDecimal getX() {
+        return x;
+    }
+
+    public void setX(BigDecimal x) {
+        this.x = x;
+    }
+
+    public BigDecimal getY() {
+        return y;
+    }
+
+    public void setY(BigDecimal y) {
+        this.y = y;
+    }
+
+    public BigDecimal getElevation() {
+        return elevation;
+    }
+
+    public void setElevation(BigDecimal elevation) {
+        this.elevation = elevation;
+    }
+
+    public BigDecimal getHoledepth() {
+        return holedepth;
+    }
+
+    public void setHoledepth(BigDecimal holedepth) {
+        this.holedepth = holedepth;
+    }
+
+    public String getGwaterdep() {
+        return gwaterdep;
+    }
+
+    public void setGwaterdep(String gwaterdep) {
+        this.gwaterdep = gwaterdep;
+    }
+
+    public String getWamplitude() {
+        return wamplitude;
+    }
+
+    public void setWamplitude(String wamplitude) {
+        this.wamplitude = wamplitude;
+    }
+
+    public String getDrilltype() {
+        return drilltype;
+    }
+
+    public void setDrilltype(String drilltype) {
+        this.drilltype = drilltype;
+    }
+
+    public String getSegname() {
+        return segname;
+    }
+
+    public void setSegname(String segname) {
+        this.segname = segname;
+    }
+
+    public String getProjname() {
+        return projname;
+    }
+
+    public void setProjname(String projname) {
+        this.projname = projname;
+    }
+
+    public String getPipename() {
+        return pipename;
+    }
+
+    public void setPipename(String pipename) {
+        this.pipename = pipename;
+    }
+
+    public String getBelongs() {
+        return belongs;
+    }
+
+    public void setBelongs(String belongs) {
+        this.belongs = belongs;
+    }
+
+    public String getBelongsid() {
+        return belongsid;
+    }
+
+    public void setBelongsid(String belongsid) {
+        this.belongsid = belongsid;
+    }
+
+    public String getDatastatus() {
+        return datastatus;
+    }
+
+    public void setDatastatus(String datastatus) {
+        this.datastatus = datastatus;
+    }
+
+    public String getRemarks() {
+        return remarks;
+    }
+
+    public void setRemarks(String remarks) {
+        this.remarks = remarks;
+    }
+
+    public String getVersion() {
+        return version;
+    }
+
+    public void setVersion(String version) {
+        this.version = version;
+    }
+
+    public String getDatastage() {
+        return datastage;
+    }
+
+    public void setDatastage(String datastage) {
+        this.datastage = datastage;
+    }
+
+    public String getPhotono() {
+        return photono;
+    }
+
+    public void setPhotono(String photono) {
+        this.photono = photono;
+    }
+
+    public String getWorkno() {
+        return workno;
+    }
+
+    public void setWorkno(String workno) {
+        this.workno = workno;
+    }
+}

--
Gitblit v1.9.3