From 8fefe6224227771b9c11b6a43094e4eee2384585 Mon Sep 17 00:00:00 2001
From: 101captain <237651143@qq.com>
Date: 星期五, 19 十一月 2021 13:36:54 +0800
Subject: [PATCH] Merge branch 'test' into zhaozhengjie1104

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |  141 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 141 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
index 798528e..59b5a38 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -4940,6 +4940,14 @@
     R getWestCommunityLists();
 
     /**
+     * 综治app-小区列表
+     * @param villageListAppDTO 请求参数
+     * @return  小区列表
+     */
+    @PostMapping("/village/grid/list/app")
+    R getGridVillageListApp(@RequestBody ComMngVillageListAppDTO villageListAppDTO);
+
+    /**
      * 分页查询退役军人列表
      *
      * @param comExServicemanDTO
@@ -7006,6 +7014,22 @@
     R applyDonates(@RequestBody ComActWarehouseApplyDTO comActWarehouseApplyDTO);
 
     /**
+     * 生成二维码
+     * @param qrCodeVO
+     * @return
+     */
+    @PostMapping("/comActActivityCode/getQRCode")
+    public R getQRCode(@RequestBody QRActivityCodeVO qrCodeVO);
+
+    /**
+     * 重置二维码
+     * @param qrCodeVO
+     * @return
+     */
+    @PostMapping("/comActActivityCode/resetQRCode")
+    public R resetQRCode(@RequestBody QRActivityCodeVO qrCodeVO);
+
+    /**
      * 实有房屋数据修复定时任务
      * @return  实有房屋数据修复定时任务
      */
@@ -7128,6 +7152,48 @@
      */
     @PostMapping("/elders/pensionAuthRecord/add")
     R addPensionAuthRecordVO(@RequestBody ComElderAuthRecordVO comElderAuthRecordVO);
+    /**
+     * 活动报名签到情况
+     * @param id 活动主键id
+     * @return
+     */
+    @GetMapping("/activity/sign-in/list")
+    R listSignInRecord(@RequestParam("id") Long id);
+
+    /**
+     * 活动签到记录
+     * @param id 活动主键
+     * @param userId 用户id
+     * @return
+     */
+    @GetMapping("/activity/regist/list")
+    R listRegistRecord(@RequestParam("id")  Long id, @RequestParam("userId") Long userId);
+
+    /**
+     * 获取活动类型(目前只有志愿者活动需要获取)
+     * @param communityId
+     * @param type
+     * @return
+     */
+    @GetMapping("/activity/type/list")
+    R listActivityType(@RequestParam("communityId") Long communityId, @RequestParam("type") Integer type);
+
+    /**
+     * 添加活动类型
+     * @param comActActivityTypeVO
+     * @return
+     */
+    @PostMapping("/activity/type/add")
+    R addActivityType(@RequestBody ComActActivityTypeVO comActActivityTypeVO);
+
+    /**
+     * 我的评价
+     * @param userId
+     * @param activityId
+     * @return
+     */
+    @GetMapping("/activity/my-evaluate")
+    R listMyActivityEvaluate(@RequestParam("userId") Long userId, @RequestParam("activityId") Long activityId);
 
     /**
      * 分页查询居家隔离统计
@@ -7138,6 +7204,81 @@
     R pageRegisterHomeQuarantine(PageReserveRegisterDetailedAdminDTO detailedAdminDTO);
 
     /**
+     * 分页查询物业宣传
+     * @param pageComPropertyPublicityDTO
+     * @return
+     */
+    @PostMapping("/property/publicity/page")
+    R pageComPropertyPublicity(@RequestBody PageComPropertyPublicityDTO pageComPropertyPublicityDTO);
+
+    /**
+     * 新增物业宣传
+     * @param comPropertyPublicityDTO
+     * @return
+     */
+    @PostMapping("/property/publicity/add")
+    R addComPropertyPublicity(@RequestBody ComPropertyPublicityDTO comPropertyPublicityDTO);
+
+    /**
+     * 修改物业宣传
+     * @param comPropertyPublicityDTO
+     * @return
+     */
+    @PostMapping("/property/publicity/update")
+    R updateComPropertyPublicity(@RequestBody ComPropertyPublicityDTO comPropertyPublicityDTO);
+
+    /**
+     * 查看物业宣传信息
+     * @param id
+     * @return
+     */
+    @GetMapping("/property/publicity/get")
+    R getComPropertyPublicity(@RequestParam("id") Long id);
+
+    /**
+     * 删除物业宣传
+     * @param id
+     * @return
+     */
+    @DeleteMapping("/property/publicity/delete")
+    R deleteComPropertyPublicity(@RequestParam("id") Long id);
+
+    /**
+     * 物业公司列表
+     *
+     * @param villageId
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/property/publicity/list/property")
+    R listProperty(@RequestParam(value = "villageId", required = false) Long villageId, @RequestParam("communityId") Long communityId);
+
+    /**
+     * 小区列表
+     * @param propertyId
+     * @param communityId
+     * @return
+     */
+    @GetMapping("/property/publicity/list/village")
+    R listVillage(@RequestParam(value = "propertyId",required = false) Long propertyId, @RequestParam("communityId") Long communityId);
+
+    /**
+     * 分页查询物业宣传-小程序
+     * @param pageComPropertyPublicityDTO
+     * @return
+     */
+    @PostMapping("/property/publicity/page/applet")
+    R pageComPropertyPublicityApplet(@RequestBody PageComPropertyPublicityDTO pageComPropertyPublicityDTO);
+
+    /**
+     * 增加物业宣传浏览量
+     * @param id
+     * @return
+     */
+    @GetMapping("/property/publicity/incr-view")
+    R incrPropertyPublicityView(@RequestParam("id") Long id);
+
+    /**
      * 居家隔离导出
      * @param pageReserveRegisterDetailedAdminDTO
      * @return

--
Gitblit v1.7.1