From 2e64c232ab6b51b2cecf1ee96e1e9b709234f326 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期六, 21 八月 2021 16:35:14 +0800 Subject: [PATCH] 随手拍改版接口开发 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 92 insertions(+), 0 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 new file mode 100644 index 0000000..41dfcb4 --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngVolunteerMngService.java @@ -0,0 +1,92 @@ +package com.panzhihua.service_community.service; + +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.user.UserPhoneVO; + +import java.util.List; + +/** + * @program: springcloud_k8s_panzhihuazhihuishequ + * @description: 志愿者 + * @author: huang.hongfa weixin hhf9596 qq 959656820 + * @create: 2020-12-17 09:23 + **/ +public interface ComMngVolunteerMngService { + /** + * 增加志愿者 + * @param comMngVolunteerMngVO 志愿者信息 + * @return 增加结果 + */ + R addVolunteer(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 删除志愿者 + * @param comMngVolunteerMngVO 手机号 + * @return 删除结果 + */ + R deleteVolunteer(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 编辑志愿者 + * @param comMngVolunteerMngVO 编辑内容 + * @return 编辑结果 + */ + R putVolunteer(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 分页展示志愿者 + * @param comMngVolunteerMngVO 查询参数 + * @return 分页集合返回 + */ + R pageVolunteer(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 分页展示志愿者审核 + * @param comMngVolunteerMngVO 查询参数 + * @return 查询结果 + */ + R pageVolunteerExamine(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 志愿者审核详情 + * @param id 主键 + * @return 详情 + */ + R detailVolunteerExamine(Long id); + /** + * 志愿者审核 + * @param comMngVolunteerMngVO 审核操作 + * @return 审核结果 + */ + R putVolunteerExamine(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 删除志愿者审核 + * @param comMngVolunteerMngVO 主键 + * @return 删除结果 + */ + R deleteVolunteerExamine(ComMngVolunteerMngVO comMngVolunteerMngVO); + /** + * 用户修改手机号对应的志愿者手机号也要修改 + * @param userPhoneVO 新旧手机号 + * @return 修改结果 + */ + R putVolunteerPhone(UserPhoneVO userPhoneVO); + /** + * 志愿者详情 + * @param id 主键 + * @return 志愿者 + */ + R detailVolunteer(Long id); + + /** + * 社区后台数据看板 + * @param communityId 社区id + * @param userId 用户id + * @return 人脸采集和志愿者审核集合 + */ + List<TodoEventsVO> selectNeedToDo(Long communityId, Long userId); + + /** + * 获取志愿者详情 + * @param id + * @return + */ + R getVolunteerById(Long id); +} -- Gitblit v1.7.1