From 0fb38e938ff2f943a6b8cc5c3247a23fc1276d24 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期一, 11 十月 2021 16:47:18 +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