Commit 3727d0ea by zhangkb

修改基础指标属性名称

parent 8b84c666
......@@ -38,5 +38,5 @@ public class BaseIndDef {
private Integer catalogId;//挂靠目录id
private String catalogIdPath;//挂靠目录idPath,方便用目录类别找到对应的挂靠指标
private List<BaseIndDef> children = new ArrayList<>();//子基础项
private List<BaseIndDef> childrens = new ArrayList<>();//子基础项
}
......@@ -53,7 +53,7 @@ public class IndicatorsRelService {
childIndList.add(childBaseIndDef);
}
}
baseIndDef.setChildren(childIndList);
baseIndDef.setChildrens(childIndList);
resultList.add(baseIndDef);
}else {
resultList.addAll(this.getRelFromFormula(baseIndDef.getIndId(),"0"));
......@@ -135,7 +135,7 @@ public class IndicatorsRelService {
}
}
}
baseIndDef.setChildren(childList);
baseIndDef.setChildrens(childList);
resultList.add(baseIndDef);
}
}
......
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