Commit 02ed51cc by qiuchaofei

修改接口名2

parent f30f5b01
......@@ -36,8 +36,8 @@ public class RelationalGraphController {
//系统总图的接口
@ApiOperation(tags = "", value = "系统总图")
@RequestMapping(path = "/getSystemGraph", method = RequestMethod.GET)
public ReturnReslult getSystemGraph(){
@RequestMapping(path = "/getAllSystemGraph", method = RequestMethod.GET)
public ReturnReslult getAllSystemGraph(){
int size = 300;
return metadataService.getSystemGraph(size);
......@@ -51,8 +51,7 @@ public class RelationalGraphController {
Map<String, List<ReturnNode>> stringListMap = systemService.getSchemaBySystemId(systemId);
int size = 300;
return stringListMap;// metadataService.getSystemGraph(size);
return stringListMap;
}
//单个schema的数据,包括表,视图,函数,过程等,列表形势
@ApiOperation(tags = "", value = "按照系统获取schema,要分层")
......@@ -62,8 +61,7 @@ public class RelationalGraphController {
Map<String, List<ReturnNode>> stringListMap = schemaService.getTablesBySchemaId(schemaId);
int size = 300;
return stringListMap;// metadataService.getSystemGraph(size);
return stringListMap;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment