From 86df207c37502cce1b2043e1c7c0486459eef1d6 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 13 三月 2025 19:58:45 +0800 Subject: [PATCH] 党员、诉求评论基础代码 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActWarehouseApplyService.java | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActWarehouseApplyService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActWarehouseApplyService.java index a7479f8..5865b91 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActWarehouseApplyService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActWarehouseApplyService.java @@ -12,5 +12,43 @@ * @since 2021-10-09 17:13:52 */ public interface ComActWarehouseApplyService extends IService<ComActWarehouseApply> { + /** + * 分页查询 + * @param commonPage + * @return + */ R pageList(CommonPage commonPage); + + /** + * 社区id查询统计数据 + * @param communityId + * @return + */ + R selectStatics(Long communityId); + + /** + * 主键查询详情 + * @param id + * @return + */ + R selectById(Integer id); + + /** + * 验证用户是否社区团队 + * @param phone + * @return + */ + R check(String phone); + + /** + * 更新 + * @param comActWarehouseApply + * @return + */ + R update(ComActWarehouseApply comActWarehouseApply); + + /** + * 导出 + */ + R export(CommonPage commonPage); } -- Gitblit v1.7.1