From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
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