From 2be6f4497960e08b0221af71716bec2c8cdbd19a Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期四, 18 十一月 2021 12:10:08 +0800
Subject: [PATCH] 物业宣传修改

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |  149 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 149 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 6d6ba10..c0b73fe 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
@@ -7004,6 +7012,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  实有房屋数据修复定时任务
      */
@@ -7126,4 +7150,129 @@
      */
     @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);
+
+    /**
+     * 分页查询居家隔离统计
+     * @param detailedAdminDTO
+     * @return
+     */
+    @PostMapping("/reserve/admin/register/homeQuarantine/page")
+    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);
 }

--
Gitblit v1.7.1