From 9bce48a9f30f7d80c43f43f46d40df20fcb00e15 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 03 二月 2023 09:39:59 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/bs/MpipelinepointEntity.java | 194 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 194 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/bs/MpipelinepointEntity.java b/src/main/java/com/lf/server/entity/bs/MpipelinepointEntity.java new file mode 100644 index 0000000..619778b --- /dev/null +++ b/src/main/java/com/lf/server/entity/bs/MpipelinepointEntity.java @@ -0,0 +1,194 @@ +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; + +/** + * Mpipelinepoint + * @author WWW + */ +@Data +@AllArgsConstructor +@TableName("bs.m_pipelinepoint") +@EqualsAndHashCode(callSuper = false) +public class MpipelinepointEntity extends BaseGeoEntity { + private static final long serialVersionUID = 488103974837858240L; + + private String segname; + + private String cpname; + + private String cptype; + + private String projname; + + private String pipename; + + private BigDecimal stavalue; + + private BigDecimal x; + + private BigDecimal y; + + private BigDecimal elev; + + private BigDecimal depth; + + private String belongs; + + private String belongsid; + + private String datastatus; + + private String remarks; + + private String version; + + private String datastage; + + private BigDecimal turnangle; + + public MpipelinepointEntity() { + } + + public String getSegname() { + return segname; + } + + public void setSegname(String segname) { + this.segname = segname; + } + + public String getCpname() { + return cpname; + } + + public void setCpname(String cpname) { + this.cpname = cpname; + } + + public String getCptype() { + return cptype; + } + + public void setCptype(String cptype) { + this.cptype = cptype; + } + + 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 BigDecimal getStavalue() { + return stavalue; + } + + public void setStavalue(BigDecimal stavalue) { + this.stavalue = stavalue; + } + + 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 getElev() { + return elev; + } + + public void setElev(BigDecimal elev) { + this.elev = elev; + } + + 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 getTurnangle() { + return turnangle; + } + + public void setTurnangle(BigDecimal turnangle) { + this.turnangle = turnangle; + } +} -- Gitblit v1.9.3