|
@@ -10,6 +10,7 @@ import cn.cslg.report.entity.invalidReReport.AssoFeatureProof;
|
|
|
import cn.cslg.report.service.business.AssoRecordsFeatureService;
|
|
|
import cn.cslg.report.service.business.InvalidReReport.ArgumentsService;
|
|
|
import cn.cslg.report.service.business.InvalidReReport.AssoFeatureProofService;
|
|
|
+import cn.cslg.report.service.business.InvalidReReport.ProofStrService;
|
|
|
import cn.cslg.report.service.business.asso.AssoReportPersonService;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
@@ -34,8 +35,7 @@ import java.util.List;
|
|
|
public class ArgumentsController {
|
|
|
private final AssoReportPersonService assoReportPersonService;
|
|
|
private final ArgumentsService argumentsService;
|
|
|
- private final AssoFeatureProofService assoFeatureProofService;
|
|
|
-
|
|
|
+ private final ProofStrService proofStrService;
|
|
|
@Operation(summary = "添加陈述意见")
|
|
|
@PostMapping("/addArguments")
|
|
|
public String addArguments(@RequestBody ArgumentsDTO argumentsDTO) throws IOException {
|
|
@@ -76,7 +76,7 @@ public class ArgumentsController {
|
|
|
@Operation(summary = "根据特征查询相关证据")
|
|
|
@GetMapping("/queryProofStr")
|
|
|
public String queryProofStr(Integer proofId, Integer featureId) throws IOException {
|
|
|
- return Response.success(assoFeatureProofService.queryProofStr(proofId, featureId));
|
|
|
+ return Response.success(proofStrService.queryProofStr(proofId,featureId));
|
|
|
}
|
|
|
|
|
|
}
|