|
@@ -49,7 +49,7 @@ public class CompareFilesController {
|
|
|
|
|
|
@PostMapping("/index/setting/update")
|
|
|
@Operation(summary = "获取专利标引情况")
|
|
|
- public String getPatentIndexSetting2(@RequestBody PatentIndexSettingVO params) {
|
|
|
+ public String getPatentIndexSetting2(@RequestBody PatentIndexSettingVO params) {
|
|
|
fieldPatentLinkService.updatePatentIndexSetting2(params);
|
|
|
return Response.success();
|
|
|
}
|
|
@@ -60,12 +60,14 @@ public class CompareFilesController {
|
|
|
compareFilesService.addOrder(compareOrderDTO);
|
|
|
return Response.success();
|
|
|
}
|
|
|
+
|
|
|
@PostMapping("/order/addProodOrder")
|
|
|
@Operation(summary = "给对比证据添加顺序")
|
|
|
public String addProodOrder(@RequestBody ProofOrderDTO proofOrderDTO) throws IOException {
|
|
|
compareFilesService.addProofOrder(proofOrderDTO);
|
|
|
return Response.success();
|
|
|
}
|
|
|
+
|
|
|
@GetMapping("/order/query")
|
|
|
@Operation(summary = "查找顺序列表")
|
|
|
public String getOrder(Integer reportId) throws IOException {
|