From 427bee04bfacf44abe5d595e2dad976747d83dba Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期日, 08 一月 2023 15:48:48 +0800
Subject: [PATCH] 1.8.5

---
 src/main/java/com/lf/server/entity/all/BaseEntity.java |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/all/BaseEntity.java b/src/main/java/com/lf/server/entity/all/BaseEntity.java
index 905a1ca..f3e7a78 100644
--- a/src/main/java/com/lf/server/entity/all/BaseEntity.java
+++ b/src/main/java/com/lf/server/entity/all/BaseEntity.java
@@ -14,9 +14,11 @@
  */
 public class BaseEntity implements Serializable {
     @TableId(type = IdType.AUTO)
-    private Long gid;
+    private Integer gid;
 
     private String eventid;
+
+    private String parentid;
 
     private Integer dirid;
 
@@ -50,11 +52,11 @@
     public BaseEntity() {
     }
 
-    public Long getGid() {
+    public Integer getGid() {
         return gid;
     }
 
-    public void setGid(Long gid) {
+    public void setGid(Integer gid) {
         this.gid = gid;
     }
 
@@ -66,6 +68,14 @@
         this.eventid = eventid;
     }
 
+    public String getParentid() {
+        return parentid;
+    }
+
+    public void setParentid(String parentid) {
+        this.parentid = parentid;
+    }
+
     public Integer getDirid() {
         return dirid;
     }

--
Gitblit v1.9.3