From 8a92712c881f3b487d926fe4638ff94bd414e4c1 Mon Sep 17 00:00:00 2001 From: wl <173@qq.com> Date: 星期二, 26 七月 2022 10:05:20 +0800 Subject: [PATCH] 报案人是否进群 --- src/main/java/com/example/jz/controller/ReportController.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/example/jz/controller/ReportController.java b/src/main/java/com/example/jz/controller/ReportController.java index 2448a01..ec097f7 100644 --- a/src/main/java/com/example/jz/controller/ReportController.java +++ b/src/main/java/com/example/jz/controller/ReportController.java @@ -13,7 +13,9 @@ import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiResponse; +import lombok.SneakyThrows; import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; @@ -64,13 +66,12 @@ /** * 鎶ユ * - * @param AddReportDto 瀹炰綋瀵硅薄 + * @param addReportDto 瀹炰綋瀵硅薄 * @return 鏂板缁撴灉 */ @PostMapping @ApiOperation(value = "鎶ユ") public R<Boolean> insert(@RequestBody AddReportDto addReportDto) { - return R.ok(reportService.addReport(addReportDto)); } -- Gitblit v1.8.0