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/MdetactionpipelinepointEntity.java |  325 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 325 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/bs/MdetactionpipelinepointEntity.java b/src/main/java/com/lf/server/entity/bs/MdetactionpipelinepointEntity.java
new file mode 100644
index 0000000..ab26a53
--- /dev/null
+++ b/src/main/java/com/lf/server/entity/bs/MdetactionpipelinepointEntity.java
@@ -0,0 +1,325 @@
+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;
+
+/**
+ * Mdetactionpipelinepoint
+ * @author WWW
+ */
+@Data
+@AllArgsConstructor
+@TableName("bs.m_detaction_pipelinepoint")
+@EqualsAndHashCode(callSuper = false)
+public class MdetactionpipelinepointEntity extends BaseGeoEntity {
+    private static final long serialVersionUID = 996290304696322560L;
+
+    private String projname;
+
+    private String plpointnum;
+
+    private String conpointno;
+
+    private String feadesc;
+
+    private String feaadd;
+
+    private BigDecimal diameter;
+
+    private String material;
+
+    private String pressure;
+
+    private String cablesnum;
+
+    private String usedholes;
+
+    private String laying;
+
+    private LocalDate layingdate;
+
+    private String flowto;
+
+    private String owninfo;
+
+    private String meaarea;
+
+    private String dpipetype;
+
+    private LocalDate surveydate;
+
+    private BigDecimal x;
+
+    private BigDecimal y;
+
+    private BigDecimal groundelev;
+
+    private BigDecimal upelev;
+
+    private BigDecimal botelev;
+
+    private BigDecimal depth;
+
+    private String belongs;
+
+    private String belongsid;
+
+    private String datastatus;
+
+    private String remarks;
+
+    private String version;
+
+    private String datastage;
+
+    private BigDecimal voltage;
+
+    public MdetactionpipelinepointEntity() {
+    }
+
+    public String getProjname() {
+        return projname;
+    }
+
+    public void setProjname(String projname) {
+        this.projname = projname;
+    }
+
+    public String getPlpointnum() {
+        return plpointnum;
+    }
+
+    public void setPlpointnum(String plpointnum) {
+        this.plpointnum = plpointnum;
+    }
+
+    public String getConpointno() {
+        return conpointno;
+    }
+
+    public void setConpointno(String conpointno) {
+        this.conpointno = conpointno;
+    }
+
+    public String getFeadesc() {
+        return feadesc;
+    }
+
+    public void setFeadesc(String feadesc) {
+        this.feadesc = feadesc;
+    }
+
+    public String getFeaadd() {
+        return feaadd;
+    }
+
+    public void setFeaadd(String feaadd) {
+        this.feaadd = feaadd;
+    }
+
+    public BigDecimal getDiameter() {
+        return diameter;
+    }
+
+    public void setDiameter(BigDecimal diameter) {
+        this.diameter = diameter;
+    }
+
+    public String getMaterial() {
+        return material;
+    }
+
+    public void setMaterial(String material) {
+        this.material = material;
+    }
+
+    public String getPressure() {
+        return pressure;
+    }
+
+    public void setPressure(String pressure) {
+        this.pressure = pressure;
+    }
+
+    public String getCablesnum() {
+        return cablesnum;
+    }
+
+    public void setCablesnum(String cablesnum) {
+        this.cablesnum = cablesnum;
+    }
+
+    public String getUsedholes() {
+        return usedholes;
+    }
+
+    public void setUsedholes(String usedholes) {
+        this.usedholes = usedholes;
+    }
+
+    public String getLaying() {
+        return laying;
+    }
+
+    public void setLaying(String laying) {
+        this.laying = laying;
+    }
+
+    public LocalDate getLayingdate() {
+        return layingdate;
+    }
+
+    public void setLayingdate(LocalDate layingdate) {
+        this.layingdate = layingdate;
+    }
+
+    public String getFlowto() {
+        return flowto;
+    }
+
+    public void setFlowto(String flowto) {
+        this.flowto = flowto;
+    }
+
+    public String getOwninfo() {
+        return owninfo;
+    }
+
+    public void setOwninfo(String owninfo) {
+        this.owninfo = owninfo;
+    }
+
+    public String getMeaarea() {
+        return meaarea;
+    }
+
+    public void setMeaarea(String meaarea) {
+        this.meaarea = meaarea;
+    }
+
+    public String getDpipetype() {
+        return dpipetype;
+    }
+
+    public void setDpipetype(String dpipetype) {
+        this.dpipetype = dpipetype;
+    }
+
+    public LocalDate getSurveydate() {
+        return surveydate;
+    }
+
+    public void setSurveydate(LocalDate surveydate) {
+        this.surveydate = surveydate;
+    }
+
+    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 getGroundelev() {
+        return groundelev;
+    }
+
+    public void setGroundelev(BigDecimal groundelev) {
+        this.groundelev = groundelev;
+    }
+
+    public BigDecimal getUpelev() {
+        return upelev;
+    }
+
+    public void setUpelev(BigDecimal upelev) {
+        this.upelev = upelev;
+    }
+
+    public BigDecimal getBotelev() {
+        return botelev;
+    }
+
+    public void setBotelev(BigDecimal botelev) {
+        this.botelev = botelev;
+    }
+
+    public BigDecimal getDepth() {
+        return depth;
+    }
+
+    public void setDepth(BigDecimal depth) {
+        this.depth = depth;
+    }
+
+    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 BigDecimal getVoltage() {
+        return voltage;
+    }
+
+    public void setVoltage(BigDecimal voltage) {
+        this.voltage = voltage;
+    }
+}

--
Gitblit v1.9.3