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

diff --git a/src/main/java/com/lf/server/entity/bs/MplanindexfileEntity.java b/src/main/java/com/lf/server/entity/bs/MplanindexfileEntity.java
new file mode 100644
index 0000000..a616d0a
--- /dev/null
+++ b/src/main/java/com/lf/server/entity/bs/MplanindexfileEntity.java
@@ -0,0 +1,205 @@
+package com.lf.server.entity.bs;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.lf.server.entity.all.BaseEntity;
+import lombok.*;
+
+import java.math.BigDecimal;
+import java.sql.Timestamp;
+import java.time.LocalDate;
+
+/**
+ * Mplanindexfile
+ * @author WWW
+ */
+@Data
+@AllArgsConstructor
+@TableName("bs.m_planindexfile")
+@EqualsAndHashCode(callSuper = false)
+public class MplanindexfileEntity extends BaseEntity {
+    private static final long serialVersionUID = 637485277670195968L;
+
+    private String begnumber;
+
+    private BigDecimal begcpvalue;
+
+    private BigDecimal begvalue;
+
+    private String endcpname;
+
+    private BigDecimal endcpvalue;
+
+    private BigDecimal endvalue;
+
+    private String scale;
+
+    private String wdgfile;
+
+    private String attribute;
+
+    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;
+
+    public MplanindexfileEntity() {
+    }
+
+    public String getBegnumber() {
+        return begnumber;
+    }
+
+    public void setBegnumber(String begnumber) {
+        this.begnumber = begnumber;
+    }
+
+    public BigDecimal getBegcpvalue() {
+        return begcpvalue;
+    }
+
+    public void setBegcpvalue(BigDecimal begcpvalue) {
+        this.begcpvalue = begcpvalue;
+    }
+
+    public BigDecimal getBegvalue() {
+        return begvalue;
+    }
+
+    public void setBegvalue(BigDecimal begvalue) {
+        this.begvalue = begvalue;
+    }
+
+    public String getEndcpname() {
+        return endcpname;
+    }
+
+    public void setEndcpname(String endcpname) {
+        this.endcpname = endcpname;
+    }
+
+    public BigDecimal getEndcpvalue() {
+        return endcpvalue;
+    }
+
+    public void setEndcpvalue(BigDecimal endcpvalue) {
+        this.endcpvalue = endcpvalue;
+    }
+
+    public BigDecimal getEndvalue() {
+        return endvalue;
+    }
+
+    public void setEndvalue(BigDecimal endvalue) {
+        this.endvalue = endvalue;
+    }
+
+    public String getScale() {
+        return scale;
+    }
+
+    public void setScale(String scale) {
+        this.scale = scale;
+    }
+
+    public String getWdgfile() {
+        return wdgfile;
+    }
+
+    public void setWdgfile(String wdgfile) {
+        this.wdgfile = wdgfile;
+    }
+
+    public String getAttribute() {
+        return attribute;
+    }
+
+    public void setAttribute(String attribute) {
+        this.attribute = attribute;
+    }
+
+    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;
+    }
+}

--
Gitblit v1.9.3