Commit ff71058c authored by helinlin's avatar helinlin

Merge remote-tracking branch 'origin/developer' into developer

parents d8f60ec0 14388ae0
...@@ -67,7 +67,7 @@ public class TreeParser { ...@@ -67,7 +67,7 @@ public class TreeParser {
parentId = PARENTIDMethodNameme.invoke(entity) != null ? Long.valueOf(String.valueOf(PARENTIDMethodNameme.invoke(entity))) : null; parentId = PARENTIDMethodNameme.invoke(entity) != null ? Long.valueOf(String.valueOf(PARENTIDMethodNameme.invoke(entity))) : null;
if (parentId == null || (topId !=null && topId.equals(parentId) )) {//陈浩2021-12-01修改 topId == parentId 的判断 if (parentId == null || parentId.equals(topId) ) {//陈浩2021-12-01修改 topId == parentId 的判断
String codeString = String.valueOf(IDMethodNameme.invoke(entity)); String codeString = String.valueOf(IDMethodNameme.invoke(entity));
Integer num = 0; Integer num = 0;
if (list != null && list.size() > 0) { if (list != null && list.size() > 0) {
......
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