|
@@ -2,7 +2,6 @@ package com.diagbot.web;
|
|
|
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.GraDTO;
|
|
|
-import com.diagbot.dto.GraphDTO;
|
|
|
import com.diagbot.dto.GraphLabelDTO;
|
|
|
import com.diagbot.dto.NodeDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
@@ -19,10 +18,10 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* @Description: 朗通知识图谱控制层
|
|
@@ -70,6 +69,7 @@ public class KgController {
|
|
|
@ApiOperation(value = "获取图", notes = "获取图")
|
|
|
@PostMapping("/getTu")
|
|
|
@SysLogger("getTu")
|
|
|
+ @ApiIgnore
|
|
|
public RespDTO<GraDTO> getTu(@RequestBody KgQueryVO kgQueryVO) {
|
|
|
return RespDTO.onSuc(kgFacade.getTuFac(kgQueryVO));
|
|
|
}
|