|
@@ -5,6 +5,7 @@ import com.diagbot.dto.LisBillNeoDTO;
|
|
|
import com.diagbot.dto.NeoEntityDTO;
|
|
|
import com.diagbot.entity.node.Gender;
|
|
|
import com.diagbot.entity.node.LisSet;
|
|
|
+import com.diagbot.entity.node.Group;
|
|
|
import com.diagbot.util.ListUtil;
|
|
|
import com.diagbot.util.NeoUtil;
|
|
|
|
|
@@ -12,6 +13,7 @@ import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.Set;
|
|
|
|
|
|
public class LisSetNode {
|
|
|
|
|
@@ -92,14 +94,15 @@ public class LisSetNode {
|
|
|
nodeInfo.setName(disease.getName());
|
|
|
lisBillNeoDTO.getDisease().add(NeoUtil.updateNodeInfo(nodeInfo));
|
|
|
}
|
|
|
+ */
|
|
|
|
|
|
- Set<Group> groups = lispack.getGroups();
|
|
|
+ Set<Group> groups = lisset.getGroups();
|
|
|
for (Group group : groups) {
|
|
|
nodeInfo = new NodeInfo();
|
|
|
nodeInfo.setName(group.getName());
|
|
|
+ nodeInfo.setTypeval(Constants.group);
|
|
|
lisBillNeoDTO.getGroup().add(NeoUtil.updateNodeInfo(nodeInfo));
|
|
|
}
|
|
|
-*/
|
|
|
|
|
|
return lisBillNeoDTO;
|
|
|
}
|