From 85cf42314fc04a637f1a44e78c1e476a445bf0f3 Mon Sep 17 00:00:00 2001
From: 101captain <237651143@qq.com>
Date: 星期一, 14 三月 2022 13:29:18 +0800
Subject: [PATCH] Merge branch 'dev'

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java |   35 +++++++++++++++++++++++------------
 1 files changed, 23 insertions(+), 12 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java
index 906cbe9..e3f563e 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java
@@ -5,6 +5,7 @@
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.common.model.vos.community.ComMngVolunteerMngVO;
 import com.panzhihua.common.model.vos.community.TodoEventsVO;
+import com.panzhihua.common.model.vos.community.volunteer.ComMngVolunteerExcelVO;
 import com.panzhihua.common.model.vos.user.UserPhoneVO;
 
 /**
@@ -16,7 +17,7 @@
 public interface ComMngVolunteerMngService {
     /**
      * 增加志愿者
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            志愿者信息
      * @return 增加结果
@@ -25,7 +26,7 @@
 
     /**
      * 删除志愿者
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            手机号
      * @return 删除结果
@@ -34,7 +35,7 @@
 
     /**
      * 编辑志愿者
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            编辑内容
      * @return 编辑结果
@@ -43,7 +44,7 @@
 
     /**
      * 分页展示志愿者
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            查询参数
      * @return 分页集合返回
@@ -52,7 +53,7 @@
 
     /**
      * 分页展示志愿者审核
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            查询参数
      * @return 查询结果
@@ -61,7 +62,7 @@
 
     /**
      * 志愿者审核详情
-     * 
+     *
      * @param id
      *            主键
      * @return 详情
@@ -70,7 +71,7 @@
 
     /**
      * 志愿者审核
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            审核操作
      * @return 审核结果
@@ -79,7 +80,7 @@
 
     /**
      * 删除志愿者审核
-     * 
+     *
      * @param comMngVolunteerMngVO
      *            主键
      * @return 删除结果
@@ -88,7 +89,7 @@
 
     /**
      * 用户修改手机号对应的志愿者手机号也要修改
-     * 
+     *
      * @param userPhoneVO
      *            新旧手机号
      * @return 修改结果
@@ -97,7 +98,7 @@
 
     /**
      * 志愿者详情
-     * 
+     *
      * @param id
      *            主键
      * @return 志愿者
@@ -106,7 +107,7 @@
 
     /**
      * 社区后台数据看板
-     * 
+     *
      * @param communityId
      *            社区id
      * @param userId
@@ -117,9 +118,19 @@
 
     /**
      * 获取志愿者详情
-     * 
+     *
      * @param id
      * @return
      */
     R getVolunteerById(Long id);
+
+    /**
+     * 志愿者导入
+     *
+     * @param list        志愿者数据列表
+     * @param communityId 社区id
+     * @param userId      用户id
+     * @return 导入结果
+     */
+    R importVolunteerAdmin(List<ComMngVolunteerExcelVO> list, Long communityId, Long userId);
 }

--
Gitblit v1.7.1