From d03d65eb475a2e689fa30f3b8681e6d97177ae08 Mon Sep 17 00:00:00 2001
From: yanghui <2536613402@qq.com>
Date: 星期一, 05 十二月 2022 09:58:06 +0800
Subject: [PATCH] #feat 过滤可视化大屏的接口
---
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDiscussCommentDO.java | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDiscussCommentDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDiscussCommentDO.java
index b880348..2d61777 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDiscussCommentDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDiscussCommentDO.java
@@ -21,7 +21,7 @@
/**
* 主键
*/
- @TableId(type = IdType.AUTO)
+ @TableId(type = IdType.ASSIGN_ID)
private Long id;
/**
@@ -64,4 +64,17 @@
* 回复量
*/
private Integer replyNum;
+
+ /**
+ * 是否删除(1.是 2.否)
+ */
+ private Integer isDel;
+
+ /**
+ * 是否删除枚举(1.是 2.否)
+ */
+ public interface isDelete{
+ int yes = 1;
+ int no = 2;
+ }
}
--
Gitblit v1.7.1