|
|
@@ -17,10 +17,7 @@ import org.springblade.core.tool.api.R;
|
|
|
import org.springblade.evisa.feign.EVisaClient;
|
|
|
import org.springblade.evisa.vo.CertBeanVO;
|
|
|
import org.springblade.resource.feign.NewIOSSClient;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.time.LocalDateTime;
|
|
|
@@ -82,9 +79,9 @@ public class ArchiveExaminingReportController {
|
|
|
return R.data(-1);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/getExamining")
|
|
|
+ @PostMapping("/getExamining")
|
|
|
@ApiOperation(value = "档案四性检测")
|
|
|
- public R getExamining(ArchiveExaminingVo vo) throws InterruptedException, IOException, DocumentException {
|
|
|
+ public R getExamining(@RequestBody ArchiveExaminingVo vo) throws InterruptedException, IOException, DocumentException {
|
|
|
|
|
|
//如果id为0则为一键检测,不为0则有报告正在进行
|
|
|
if (vo.getReportId() == 0) {
|