From 780bf6eb11cc2d2d3c0feb4637e3daefdffccf2c Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期四, 07 七月 2022 11:26:24 +0800 Subject: [PATCH] 问题清单bug处理 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleTopicDO.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleTopicDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleTopicDO.java index 34749bc..fb32004 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleTopicDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleTopicDO.java @@ -10,7 +10,7 @@ import lombok.Data; /** - * @auther lyq + * @author lyq * @create 2021-07-06 15:04:37 * @describe 邻里圈话题表实体类 */ @@ -63,6 +63,18 @@ private Integer count; /** + * 使用类型(1.邻里圈 2.问题清单 3.需求清单) + */ + private Integer belongType; + + /** + * 话题logo + */ + private String logo; + + private Integer sort; + + /** * 状态(1.启用 2.禁用) */ public interface status{ @@ -75,4 +87,13 @@ return "ComActNeighborCircleTopicDO{" + "id=" + id + ", name=" + name + ", status=" + status + ", createAt=" + createAt + ", createBy=" + createBy + "}"; } -} \ No newline at end of file + + /** + * 使用类型(1.邻里圈 2.问题清单 3.需求清单) + */ + public interface BelongType{ + int LLQ = 1; + int WTQD = 2; + int XQQD = 3; + } +} -- Gitblit v1.7.1