From 8e2d30fd6ac9c8cd3ee6d68c8fd575848f37390d Mon Sep 17 00:00:00 2001
From: 罗元桥 <2376770955@qq.com>
Date: 星期二, 31 八月 2021 10:42:13 +0800
Subject: [PATCH] Merge branch 'test' into 'master'

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java |   86 +++++++++++++++++++++++++++++++++++++++---
 1 files changed, 79 insertions(+), 7 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java
index 957c865..912692f 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java
@@ -511,6 +511,18 @@
     }
 
     /**
+     * description  getSignLists  查询活动报名名单
+     * @param    activitySignVO  查询参数
+     * @return    R   查询结果
+     * @author txb
+     * @date 2021/8/24 14:03
+     */
+    @PostMapping("activity/sign/getList")
+    public R getSignLists(@RequestBody ActivitySignVO activitySignVO){
+        return comActActivityService.getSignLists(activitySignVO);
+    }
+
+    /**
      * description  listActivityRegists  分页查询活动评价
      * @param    comActActEvaluateVO  活动评价vo
      * @return    R   分页查询结果
@@ -518,20 +530,80 @@
      * @date 2021/8/24 14:03
      */
     @PostMapping("activity/evaluate/page")
-    public R pageActivityRegists(@RequestBody ComActActEvaluateVO comActActEvaluateVO) {
-        return comActActivityService.pageActivityRegists(comActActEvaluateVO);
+    public R pageActivityEvaluates(@RequestBody ComActActEvaluateVO comActActEvaluateVO) {
+        return comActActivityService.pageActivityEvaluates(comActActEvaluateVO);
     }
 
     /**
-     * description  getEvaluateListsByIds  批量查询活动评价
-     * @param    ids  ids
+     * description  getEvaluateLists  查询活动评价
+     * @param    comActActEvaluateVO  查询参数
      * @return    R   查询结果
      * @author txb
      * @date 2021/8/24 14:03
      */
-    @PostMapping("/activity/evaluate/getList")
-    public R getEvaluateListsByIds(@RequestBody List<Long> ids){
-        return comActActivityService.getEvaluateListsByIds(ids);
+    @PostMapping("activity/evaluate/getList")
+    public R getEvaluateLists(@RequestBody ComActActEvaluateVO comActActEvaluateVO){
+        return comActActivityService.getEvaluateLists(comActActEvaluateVO);
+    }
+
+    /**
+     * description  pageActivityRegists  分页查询活动签到
+     * @param    comActActRegistVO  活动签到vo
+     * @return    R   分页查询结果
+     * @author txb
+     * @date 2021/8/24 14:03
+     */
+    @PostMapping("activity/regist/page")
+    public R pageActivityRegists(@RequestBody ComActActRegistVO comActActRegistVO) {
+        return comActActivityService.pageActivityRegists(comActActRegistVO);
+    }
+
+    /**
+     * description  getRegistLists  查询活动签到
+     * @param    comActActRegistVO  查询参数
+     * @return    R   查询结果
+     * @author txb
+     * @date 2021/8/25 9:33
+     */
+    @PostMapping("activity/regist/getList")
+    public R getRegistLists(@RequestBody ComActActRegistVO comActActRegistVO){
+        return comActActivityService.getRegistLists(comActActRegistVO);
+    }
+
+    /**
+     * description  getRegistLists  查询活动未签到
+     * @param    comActActRegistVO  查询参数
+     * @return    R   查询结果
+     * @author txb
+     * @date 2021/8/25 9:33
+     */
+    @PostMapping("activity/noRegist/getList")
+    public R getNoRegistLists(@RequestBody ComActActRegistVO comActActRegistVO){
+        return comActActivityService.getNoRegistLists(comActActRegistVO);
+    }
+
+    /**
+     * description  activityStagistics  活动数据统计
+     * @param activityId 活动id
+     * @return    R   统计结果
+     * @author txb
+     * @date 2021/8/25 13:33
+     */
+    @GetMapping("activity/statistics")
+    public R activityStatistics(@RequestParam("activityId") Long activityId){
+        return comActActivityService.activityStatistics(activityId);
+    }
+
+    /**
+     * 获取活动历史封面  getPictureList
+     * @param userId 用户id
+     * @return    R   统计结果
+     * @author txb
+     * @date 2021/8/27 13:33
+     */
+    @GetMapping("/activity/picture/getList")
+    public R getPictureList(@RequestParam("userId") Long userId){
+        return comActActivityService.getPictureList(userId);
     }
 
     /**

--
Gitblit v1.7.1