From 8aa3663aeccc91a69d9fa98274bcbcbd1be83c8a Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期六, 23 七月 2022 14:27:58 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java index bfb48e3..e74ed9c 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java @@ -19,6 +19,8 @@ import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; +import static java.util.Objects.isNull; + /** * @auther lyq * @create 2021-04-14 15:02:49 @@ -231,6 +233,7 @@ @ApiOperation(value = "新版接单问题",response =ComActNeighborCircleAppVO.class ) @PostMapping("selectSolve") public R selectSolve(@RequestBody ComActNeighborCircleAppDTO neighborCircleAppDTO) { + neighborCircleAppDTO.setUserId(this.getUserId()); return communityService.selectSolve(neighborCircleAppDTO); } @@ -245,5 +248,13 @@ public R order(@RequestBody EditNeighborCircleAdminVO editNeighborCircleAdminVO){ return this.communityService.order(editNeighborCircleAdminVO); } + + @ApiOperation(value = "服务统计",response = ServiceStaticsVO.class) + @PostMapping("/serviceStatic") + public R serviceStatic(@RequestBody ServiceStaticDTO serviceStaticDTO){ + return this.communityService.serviceStatic(serviceStaticDTO); + } + + } -- Gitblit v1.7.1