From c6908e1d2efd4f3a1fcfdb1af7f1b78156d07d91 Mon Sep 17 00:00:00 2001
From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com>
Date: 星期三, 23 十月 2024 09:15:58 +0800
Subject: [PATCH] 统计 待发货 在售商品 待审核商品 待售后处理
---
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