遞歸遍歷組織機構樹


public List<EasyUIJsonTree> getCdtj() {
/*組織機構樹*/
List<EasyUIJsonTree> deptTree = safeMonitorService.getDepartTree();
List<Cdtj> cdtjList=statisticalDataService.getLstj();
tree(deptTree,cdtjList);
return deptTree;
}

 

 

/*遞歸遍歷組織機構,判斷id相同填入數據*/
public void tree(List<EasyUIJsonTree> list,List<Cdtj> cdtjList){
for(EasyUIJsonTree A:list){
if(!CollectionUtils.isEmpty(A.getChildren())){
List<EasyUIJsonTree> children = A.getChildren();
tree(children,cdtjList);
}else{
for(Cdtj B:cdtjList){
HashMap<String, Object> map=new HashMap<>();
map.put("cdtj", B);
if(A.getMineId().equals(B.getMineID())){
A.setAttributes(map);
}
}
}
}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM