From b7670866e6a2076e6eab1f24c332b0703f751922 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期五, 20 八月 2021 11:22:53 +0800
Subject: [PATCH] 随手拍改版接口开发

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 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 68ff014..60bec9a 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
@@ -9,6 +9,7 @@
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.panzhihua.common.exceptions.ServiceException;
 import com.panzhihua.common.model.dtos.community.*;
+import com.panzhihua.common.model.dtos.community.easyPhoto.ExportEasyPhotoDTO;
 import com.panzhihua.common.model.dtos.community.questnaire.StatisticsSummaryDTO;
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.common.model.vos.SystemmanagementConfigVO;
@@ -478,6 +479,24 @@
     }
 
     /**
+     * 城管安排
+     *
+     * @param comActEasyPhotoVO 查询参数
+     * @return 心愿列表
+     */
+    @PostMapping("updatePageeasyphoto")
+    public R updatePageeasyphoto(@RequestBody ComActEasyPhotoVO comActEasyPhotoVO) {
+        return comActEasyPhotoService.updatePageeasyphoto(comActEasyPhotoVO);
+    }
+    /**
+     * 城管导出
+     */
+    @PostMapping("exportEasyPhoto")
+    public R exportEasyPhoto(@RequestBody ExportEasyPhotoDTO exportEasyPhotoDTO){
+        return comActEasyPhotoService.export(exportEasyPhotoDTO);
+    }
+
+    /**
      * 随手拍详情
      *
      * @param id     随手拍主键
@@ -648,6 +667,14 @@
     }
 
     /**
+     * 城管随手拍统计
+     */
+    @PostMapping("/esayPhotoCount")
+    public R esayphotoCount(@RequestBody ComActEasyPhotoVO comActEasyPhotoVO) {
+        return comActEasyPhotoService.easyPhotoCount(comActEasyPhotoVO);
+    }
+
+    /**
      * 新增社区
      *
      * @param comActVO 社区信息

--
Gitblit v1.7.1