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 |  116 ++++++++++++++--------------------------------------------
 1 files changed, 28 insertions(+), 88 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
index 5854b1c..87bc8b7 100644
--- a/src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java
+++ b/src/main/java/com/lf/server/entity/bs/SexplorationpointEntity.java
@@ -5,9 +5,9 @@
 import com.lf.server.entity.all.BaseGeoEntity;
 import lombok.*;
 
-import java.io.Serializable;
 import java.math.BigDecimal;
 import java.sql.Timestamp;
+import java.time.LocalDate;
 
 /**
  * Sexplorationpoint
@@ -17,8 +17,8 @@
 @AllArgsConstructor
 @TableName("bs.s_explorationpoint")
 @EqualsAndHashCode(callSuper = false)
-public class SexplorationpointEntity extends BaseGeoEntity implements Serializable {
-    private static final long serialVersionUID = 434009949878794112L;
+public class SexplorationpointEntity extends BaseGeoEntity {
+    private static final long serialVersionUID = 637485277670195968L;
 
     private String exppointid;
 
@@ -26,31 +26,21 @@
 
     private BigDecimal y;
 
-    private BigDecimal elev;
+    private BigDecimal elevation;
 
     private BigDecimal holedepth;
 
-    private BigDecimal gwaterdep;
+    private String gwaterdep;
 
-    private BigDecimal wamplitude;
+    private String wamplitude;
 
     private String drilltype;
-
-    private String eventid;
 
     private String segname;
 
     private String projname;
 
     private String pipename;
-
-    private String createtime;
-
-    private String createuser;
-
-    private String updatetime;
-
-    private String updateuser;
 
     private String belongs;
 
@@ -64,11 +54,9 @@
 
     private String datastage;
 
-    private Integer dirid;
+    private String photono;
 
-    private Integer depid;
-
-    private Integer verid;
+    private String workno;
 
     public SexplorationpointEntity() {
     }
@@ -81,28 +69,28 @@
         this.exppointid = exppointid;
     }
 
-    public BigDecimal getx() {
+    public BigDecimal getX() {
         return x;
     }
 
-    public void setx(BigDecimal x) {
+    public void setX(BigDecimal x) {
         this.x = x;
     }
 
-    public BigDecimal gety() {
+    public BigDecimal getY() {
         return y;
     }
 
-    public void sety(BigDecimal y) {
+    public void setY(BigDecimal y) {
         this.y = y;
     }
 
-    public BigDecimal getElev() {
-        return elev;
+    public BigDecimal getElevation() {
+        return elevation;
     }
 
-    public void setElev(BigDecimal elev) {
-        this.elev = elev;
+    public void setElevation(BigDecimal elevation) {
+        this.elevation = elevation;
     }
 
     public BigDecimal getHoledepth() {
@@ -113,19 +101,19 @@
         this.holedepth = holedepth;
     }
 
-    public BigDecimal getGwaterdep() {
+    public String getGwaterdep() {
         return gwaterdep;
     }
 
-    public void setGwaterdep(BigDecimal gwaterdep) {
+    public void setGwaterdep(String gwaterdep) {
         this.gwaterdep = gwaterdep;
     }
 
-    public BigDecimal getWamplitude() {
+    public String getWamplitude() {
         return wamplitude;
     }
 
-    public void setWamplitude(BigDecimal wamplitude) {
+    public void setWamplitude(String wamplitude) {
         this.wamplitude = wamplitude;
     }
 
@@ -135,14 +123,6 @@
 
     public void setDrilltype(String drilltype) {
         this.drilltype = drilltype;
-    }
-
-    public String getEventid() {
-        return eventid;
-    }
-
-    public void setEventid(String eventid) {
-        this.eventid = eventid;
     }
 
     public String getSegname() {
@@ -167,38 +147,6 @@
 
     public void setPipename(String pipename) {
         this.pipename = pipename;
-    }
-
-    public String getCreatetime() {
-        return createtime;
-    }
-
-    public void setCreatetime(String createtime) {
-        this.createtime = createtime;
-    }
-
-    public String getCreateuser() {
-        return createuser;
-    }
-
-    public void setCreateuser(String createuser) {
-        this.createuser = createuser;
-    }
-
-    public String getUpdatetime() {
-        return updatetime;
-    }
-
-    public void setUpdatetime(String updatetime) {
-        this.updatetime = updatetime;
-    }
-
-    public String getUpdateuser() {
-        return updateuser;
-    }
-
-    public void setUpdateuser(String updateuser) {
-        this.updateuser = updateuser;
     }
 
     public String getBelongs() {
@@ -249,27 +197,19 @@
         this.datastage = datastage;
     }
 
-    public Integer getDirid() {
-        return dirid;
+    public String getPhotono() {
+        return photono;
     }
 
-    public void setDirid(Integer dirid) {
-        this.dirid = dirid;
+    public void setPhotono(String photono) {
+        this.photono = photono;
     }
 
-    public Integer getDepid() {
-        return depid;
+    public String getWorkno() {
+        return workno;
     }
 
-    public void setDepid(Integer depid) {
-        this.depid = depid;
-    }
-
-    public Integer getVerid() {
-        return verid;
-    }
-
-    public void setVerid(Integer verid) {
-        this.verid = verid;
+    public void setWorkno(String workno) {
+        this.workno = workno;
     }
 }

--
Gitblit v1.9.3