Commit 731c0f79 by qiuchaofei

修改关系名。

parent 9640af49
...@@ -86,6 +86,16 @@ public class BaseRelationshipServiceImpl implements IBaseRelationshipService { ...@@ -86,6 +86,16 @@ public class BaseRelationshipServiceImpl implements IBaseRelationshipService {
Long endId = record.get("endId").asLong(); Long endId = record.get("endId").asLong();
String name = record.get("name").asString(); String name = record.get("name").asString();
if(name.equals("Input")){
name = "流入";
}else if(name.equals("Output")){
name = "流出";
} else if(name.equals("Composition")){
name = "组合";
} else if(name.equals("Execute")){
name = "执行";
}
// if (name == null || name.equals("null")) { // if (name == null || name.equals("null")) {
// name = startId + "-" + "relation" + "-" + endId; // name = startId + "-" + "relation" + "-" + endId;
// } else { // } else {
......
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