From de91c84954157bb9f8b6d938cbe0b1b51fb6e65d Mon Sep 17 00:00:00 2001 From: CeDo <cedoogle@gmail.com> Date: 星期五, 07 五月 2021 15:23:57 +0800 Subject: [PATCH] bugfixed:新增便民服务商家 报错 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java index fecf0d3..205fc75 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActService.java @@ -1,5 +1,7 @@ package com.panzhihua.service_community.service; +import com.panzhihua.common.model.dtos.community.PageComActDTO; +import com.panzhihua.common.model.dtos.user.PageFeedBackDTO; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.ComActVO; @@ -28,4 +30,27 @@ * @return 社区集合 */ R listCommunity(ComActVO comActVO); + /** + * 社区详情 + * @param communityId 社区id + * @return 社区详情 + */ + R detailCommunity(Long communityId); + /** + * 分页查询社区 + * @param pageComActDTO 查询参数 + * @return 分页集合 + */ + R pageCommunity(PageComActDTO pageComActDTO); + /** + * 查询平台所有的社区 + * @return 社区集合 按照创建顺序倒序排列 + */ + R listCommunityAll(); + /** + * 删除社区 + * @param communityId 社区id + * @return 删除结果 + */ + R delectCommunity(Long communityId); } -- Gitblit v1.7.1