|
@@ -5,7 +5,9 @@ import cn.cslg.pas.common.dto.invalidDTO.*;
|
|
|
import cn.cslg.pas.common.model.cronModel.Records;
|
|
|
import cn.cslg.pas.common.utils.Response;
|
|
|
import cn.cslg.pas.common.vo.invalidVO.ReportAffairVO;
|
|
|
+import cn.cslg.pas.domain.business.ReportAffairCasePhase;
|
|
|
import cn.cslg.pas.exception.XiaoShiException;
|
|
|
+import cn.cslg.pas.service.ReportAffairCasePhaseService;
|
|
|
import cn.cslg.pas.service.business.*;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -36,6 +38,8 @@ public class ReportAffairController {
|
|
|
private AdminProceedService adminProceedService;
|
|
|
@Autowired
|
|
|
private OtherDocumentsService otherDocumentsService;
|
|
|
+ @Autowired
|
|
|
+ private ReportAffairCasePhaseService reportAffairCasePhaseService;
|
|
|
|
|
|
@Operation(summary = "上传无效请求书")
|
|
|
@PostMapping("/addInvalidRequestFile")
|
|
@@ -220,4 +224,13 @@ public class ReportAffairController {
|
|
|
records.setData(id);
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
+
|
|
|
+ @Operation(summary = "查询案件关联文档集合")
|
|
|
+ @PostMapping("/queryAssoCasePhaseList")
|
|
|
+ public Response queryAssoCasePhaseList() throws Exception {
|
|
|
+ List<ReportAffairCasePhase> phases = reportAffairCasePhaseService.queryAssoCasePhaseList();
|
|
|
+ Records records = new Records();
|
|
|
+ records.setData(phases);
|
|
|
+ return Response.success(records);
|
|
|
+ }
|
|
|
}
|