From e7c6ca7869eca24c97ee651bf73394cfd1cc4bad Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期四, 27 五月 2021 17:45:38 +0800 Subject: [PATCH] 网格综治app随手拍 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java index a430595..9f93471 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/grid/GridService.java @@ -468,4 +468,43 @@ */ @PostMapping("/easy/list") R easyList(@RequestBody PageEasyAppDTO easyAppDTO); + + /** + * 查询随手拍详情 + * @param easyId 随手拍id + * @return 随手拍详情 + */ + @PostMapping("/easy/detail") + R easyDetailByApp(@RequestParam("easyId") Long easyId); + + /** + * 查询随手拍类型列表 + * @return 类型列表 + */ + @PostMapping("/easy/type/list") + R easyTypeListByApp(); + + /** + * 随手拍处理 + * @param photoHandleDTO 请求参数 + * @return 处理结果 + */ + @PostMapping("/easy/handle") + R easyHandle(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); + + /** + * 随手拍公示状态切换 + * @param photoHandleDTO 请求参数 + * @return 切换结果 + */ + @PostMapping("/easy/publicity") + R easyPublicity(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); + + /** + * 随手拍上报社区 + * @param photoHandleDTO 请求参数 + * @return 上报结果 + */ + @PostMapping("/easy/report") + R easyReport(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); } -- Gitblit v1.7.1