From bf2a0074e66bd9ac30b302594a45e9f3eb1e4116 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期三, 27 十一月 2024 14:23:22 +0800
Subject: [PATCH] 569-供应商列表:1.序号ID修改为供应商ID,并移动到第一列 2.增加供应商ID查询框

---
 src/main/java/com/mzl/flower/entity/FlowerCommentDO.java |   30 +++++++++++++++++++++++++++---
 1 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/mzl/flower/entity/FlowerCommentDO.java b/src/main/java/com/mzl/flower/entity/FlowerCommentDO.java
index e14b0cb..328fc4a 100644
--- a/src/main/java/com/mzl/flower/entity/FlowerCommentDO.java
+++ b/src/main/java/com/mzl/flower/entity/FlowerCommentDO.java
@@ -1,8 +1,9 @@
 package com.mzl.flower.entity;
 
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.mzl.flower.base.BaseEntity;
-import java.sql.Blob;
+import java.time.LocalDateTime;
+
+import com.mzl.flower.base.BaseEntityLogic;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
@@ -17,7 +18,7 @@
 @EqualsAndHashCode(callSuper = true)
 @Accessors(chain = true)
 @TableName("t_flower_comment")
-public class FlowerCommentDO extends BaseEntity {
+public class FlowerCommentDO extends BaseEntityLogic {
 
 
     /**
@@ -80,5 +81,28 @@
      */
     private Integer anonymityFalg;
 
+    /**
+     * 显示标志 0-显示 1-隐藏
+     */
+    private Integer showFlag;
+
+
+    /**
+     * 回复内容
+     */
+    private String replayContent;
+
+    /**
+     * 回复人
+     */
+    private String replayBy;
+
+
+    /**
+     * 回复时间
+     */
+    private LocalDateTime replayTime;
+
+
 
 }

--
Gitblit v1.9.3