From 8b26fa15912e355e57990946ac52f699130788c2 Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期二, 27 十二月 2022 11:15:21 +0800
Subject: [PATCH] fix: 删除管理删除用户删除案件

---
 src/main/java/com/example/jz/controller/ReportController.java |   25 ++++++++++++-------------
 1 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/src/main/java/com/example/jz/controller/ReportController.java b/src/main/java/com/example/jz/controller/ReportController.java
index 6ea3049..4908e4f 100644
--- a/src/main/java/com/example/jz/controller/ReportController.java
+++ b/src/main/java/com/example/jz/controller/ReportController.java
@@ -1,26 +1,28 @@
 package com.example.jz.controller;
 
 
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.api.ApiController;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.example.jz.modle.R;
 import com.example.jz.modle.dto.AddReportDto;
 import com.example.jz.modle.dto.ReportParamDto;
+import com.example.jz.modle.entity.GroupUser;
+import com.example.jz.modle.entity.Message;
 import com.example.jz.modle.entity.Report;
 import com.example.jz.modle.vo.ReportListVo;
+import com.example.jz.service.GroupUserService;
+import com.example.jz.service.MessageService;
 import com.example.jz.service.ReportService;
 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;
 import java.io.Serializable;
-import java.util.Date;
 
 /**
  * 鎶ユ琛�(Report)琛ㄦ帶鍒跺眰
@@ -37,6 +39,10 @@
      */
     @Resource
     private ReportService reportService;
+    @Resource
+    GroupUserService groupUserService;
+    @Resource
+    MessageService messageService;
 
     /**
      * 鍒嗛〉鏌ヨ鎵�鏈夋暟鎹�
@@ -72,7 +78,6 @@
     @PostMapping
     @ApiOperation(value = "鎶ユ")
     public R<Boolean> insert(@RequestBody AddReportDto addReportDto) {
-
         return R.ok(reportService.addReport(addReportDto));
     }
 
@@ -92,6 +97,7 @@
     @PutMapping("/updateReport")
     @ApiResponse(message = "鎵ц鎴愬姛", code = 200)
     public R updateReport(@RequestBody Report report) {
+        report.setPic(null);
         reportService.updateById(report);
         return R.ok();
     }
@@ -108,6 +114,8 @@
     @DeleteMapping("/deleteReporter")
     @ApiResponse(message = "鎵ц鎴愬姛", code = 200)
     public R deleteReporter(@RequestParam(value = "id") Integer id) {
+        groupUserService.remove(new LambdaQueryWrapper<GroupUser>().eq(GroupUser::getUserId, id));
+        messageService.remove(new LambdaQueryWrapper<Message>().eq(Message::getUserId, id));
         reportService.removeById(id);
         return R.ok();
     }
@@ -117,15 +125,6 @@
     @ApiResponse(message = "鎵ц鎴愬姛", code = 200)
     public void exportReport(@RequestParam(value = "id") Integer id, HttpServletResponse response) {
         reportService.exportReporter(id, response);
-    }
-
-    @ApiOperation(httpMethod = "POST", value = "妗堜欢鍙�-鎶ユ浜哄憳-鎶ユ浜哄憳瀵煎叆")
-    @PostMapping("/upload")
-    @ApiResponse(message = "鎵ц鎴愬姛", code = 200)
-    @SneakyThrows
-    public R upload(@RequestParam(value = "multipartFile") MultipartFile multipartFile) {
-        reportService.loadFile(multipartFile);
-        return R.ok();
     }
 }
 

--
Gitblit v1.8.0