|
@@ -118,17 +118,6 @@ public class NoveltyProjectController {
|
|
|
return Response.success(caseVO);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "删除技术方案信息")
|
|
|
- @PostMapping("/deleteTechnicalCase")
|
|
|
- public Response deleteTechnicalCase(@RequestBody TechnicalCaseIdDTO vo) throws Exception {
|
|
|
- try {
|
|
|
- technicalCaseService.deleteTechnicalCase(vo);
|
|
|
- } catch (Exception e) {
|
|
|
- return Response.error(e.getMessage());
|
|
|
- }
|
|
|
- return Response.success("删除成功");
|
|
|
- }
|
|
|
-
|
|
|
@Operation(summary = "查询技术方案相似发明点")
|
|
|
@PostMapping("/querySimilarInventionPoint")
|
|
|
public Response querySimilarInventionPoint(@RequestBody String content) throws Exception {
|
|
@@ -141,19 +130,6 @@ public class NoveltyProjectController {
|
|
|
return Response.success(inventionPointVOS);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "添加对比文件")
|
|
|
- @PostMapping("/addCompareFile")
|
|
|
- public Response addCompareFile(@RequestBody AddCompareFileDTO fileDTO) throws Exception {
|
|
|
- Integer compareFileId = null;
|
|
|
- try {
|
|
|
- compareFileId = noveltyCompareLiteratureService.addCompareFile(fileDTO);
|
|
|
-
|
|
|
- } catch (Exception e) {
|
|
|
- return Response.error(e.getMessage());
|
|
|
- }
|
|
|
- return Response.success(compareFileId);
|
|
|
- }
|
|
|
-
|
|
|
@Operation(summary = "更新对比文件")
|
|
|
@PostMapping("/editCompareFile")
|
|
|
public Response editCompareFile(@RequestBody AddCompareFileDTO fileDTO) throws Exception {
|