Commit 6d45e70e by qiuchaofei

1.修改获取全部关系类型的方法3

parent 4cbc5913
......@@ -522,8 +522,13 @@ public class MetaDataController {
@ApiOperation(tags = "", value = "查询所有的关系类型")
@RequestMapping(path = "/listAllRelationType", method = RequestMethod.GET)
public List<String> getAllRelationType() {
List<String> relationTypes = new ArrayList<>();
return baseRelationshipService.findAllRelationTypes();
relationTypes.add("流向");
relationTypes.add("组合");
return relationTypes;
// return baseRelationshipService.findAllRelationTypes();
}
/**
......
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