From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 02 七月 2025 16:43:13 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service

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

diff --git a/src/main/java/com/lf/server/entity/bs/SboreholeEntity.java b/src/main/java/com/lf/server/entity/bs/SboreholeEntity.java
new file mode 100644
index 0000000..04ff6fc
--- /dev/null
+++ b/src/main/java/com/lf/server/entity/bs/SboreholeEntity.java
@@ -0,0 +1,395 @@
+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;
+
+/**
+ * Sborehole
+ * @author WWW
+ */
+@Data
+@AllArgsConstructor
+@TableName("bs.s_borehole")
+@EqualsAndHashCode(callSuper = false)
+public class SboreholeEntity extends BaseGeoEntity {
+    private static final long serialVersionUID = 637485277670195968L;
+
+    private String drilltype;
+
+    private String drillcode;
+
+    private BigDecimal holedepth;
+
+    private BigDecimal groundelev;
+
+    private String undissamno;
+
+    private String dissampno;
+
+    private String tests;
+
+    private BigDecimal gwaterdep;
+
+    private String gwatertype;
+
+    private BigDecimal wamplitude;
+
+    private LocalDate gwaterdate;
+
+    private String workname;
+
+    private String workarea;
+
+    private String resvalue;
+
+    private String ungeopro;
+
+    private String sperands;
+
+    private String corwands;
+
+    private String parameter;
+
+    private Integer bearingcap;
+
+    private String strdensity;
+
+    private String forwarcon;
+
+    private String portatio;
+
+    private String forcom;
+
+    private BigDecimal conmodulus;
+
+    private String forcoh;
+
+    private String angleofin;
+
+    private String pilefound;
+
+    private String projname;
+
+    private BigDecimal x;
+
+    private BigDecimal y;
+
+    private String belongs;
+
+    private String belongsid;
+
+    private String datastatus;
+
+    private String remarks;
+
+    private String version;
+
+    private String datastage;
+
+    private String photono;
+
+    public SboreholeEntity() {
+    }
+
+    public String getDrilltype() {
+        return drilltype;
+    }
+
+    public void setDrilltype(String drilltype) {
+        this.drilltype = drilltype;
+    }
+
+    public String getDrillcode() {
+        return drillcode;
+    }
+
+    public void setDrillcode(String drillcode) {
+        this.drillcode = drillcode;
+    }
+
+    public BigDecimal getHoledepth() {
+        return holedepth;
+    }
+
+    public void setHoledepth(BigDecimal holedepth) {
+        this.holedepth = holedepth;
+    }
+
+    public BigDecimal getGroundelev() {
+        return groundelev;
+    }
+
+    public void setGroundelev(BigDecimal groundelev) {
+        this.groundelev = groundelev;
+    }
+
+    public String getUndissamno() {
+        return undissamno;
+    }
+
+    public void setUndissamno(String undissamno) {
+        this.undissamno = undissamno;
+    }
+
+    public String getDissampno() {
+        return dissampno;
+    }
+
+    public void setDissampno(String dissampno) {
+        this.dissampno = dissampno;
+    }
+
+    public String getTests() {
+        return tests;
+    }
+
+    public void setTests(String tests) {
+        this.tests = tests;
+    }
+
+    public BigDecimal getGwaterdep() {
+        return gwaterdep;
+    }
+
+    public void setGwaterdep(BigDecimal gwaterdep) {
+        this.gwaterdep = gwaterdep;
+    }
+
+    public String getGwatertype() {
+        return gwatertype;
+    }
+
+    public void setGwatertype(String gwatertype) {
+        this.gwatertype = gwatertype;
+    }
+
+    public BigDecimal getWamplitude() {
+        return wamplitude;
+    }
+
+    public void setWamplitude(BigDecimal wamplitude) {
+        this.wamplitude = wamplitude;
+    }
+
+    public LocalDate getGwaterdate() {
+        return gwaterdate;
+    }
+
+    public void setGwaterdate(LocalDate gwaterdate) {
+        this.gwaterdate = gwaterdate;
+    }
+
+    public String getWorkname() {
+        return workname;
+    }
+
+    public void setWorkname(String workname) {
+        this.workname = workname;
+    }
+
+    public String getWorkarea() {
+        return workarea;
+    }
+
+    public void setWorkarea(String workarea) {
+        this.workarea = workarea;
+    }
+
+    public String getResvalue() {
+        return resvalue;
+    }
+
+    public void setResvalue(String resvalue) {
+        this.resvalue = resvalue;
+    }
+
+    public String getUngeopro() {
+        return ungeopro;
+    }
+
+    public void setUngeopro(String ungeopro) {
+        this.ungeopro = ungeopro;
+    }
+
+    public String getSperands() {
+        return sperands;
+    }
+
+    public void setSperands(String sperands) {
+        this.sperands = sperands;
+    }
+
+    public String getCorwands() {
+        return corwands;
+    }
+
+    public void setCorwands(String corwands) {
+        this.corwands = corwands;
+    }
+
+    public String getParameter() {
+        return parameter;
+    }
+
+    public void setParameter(String parameter) {
+        this.parameter = parameter;
+    }
+
+    public Integer getBearingcap() {
+        return bearingcap;
+    }
+
+    public void setBearingcap(Integer bearingcap) {
+        this.bearingcap = bearingcap;
+    }
+
+    public String getStrdensity() {
+        return strdensity;
+    }
+
+    public void setStrdensity(String strdensity) {
+        this.strdensity = strdensity;
+    }
+
+    public String getForwarcon() {
+        return forwarcon;
+    }
+
+    public void setForwarcon(String forwarcon) {
+        this.forwarcon = forwarcon;
+    }
+
+    public String getPortatio() {
+        return portatio;
+    }
+
+    public void setPortatio(String portatio) {
+        this.portatio = portatio;
+    }
+
+    public String getForcom() {
+        return forcom;
+    }
+
+    public void setForcom(String forcom) {
+        this.forcom = forcom;
+    }
+
+    public BigDecimal getConmodulus() {
+        return conmodulus;
+    }
+
+    public void setConmodulus(BigDecimal conmodulus) {
+        this.conmodulus = conmodulus;
+    }
+
+    public String getForcoh() {
+        return forcoh;
+    }
+
+    public void setForcoh(String forcoh) {
+        this.forcoh = forcoh;
+    }
+
+    public String getAngleofin() {
+        return angleofin;
+    }
+
+    public void setAngleofin(String angleofin) {
+        this.angleofin = angleofin;
+    }
+
+    public String getPilefound() {
+        return pilefound;
+    }
+
+    public void setPilefound(String pilefound) {
+        this.pilefound = pilefound;
+    }
+
+    public String getProjname() {
+        return projname;
+    }
+
+    public void setProjname(String projname) {
+        this.projname = projname;
+    }
+
+    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 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;
+    }
+}

--
Gitblit v1.9.3