|
@@ -17,6 +17,7 @@ import org.springframework.transaction.interceptor.TransactionAspectSupport;
|
17
|
17
|
|
18
|
18
|
import java.util.ArrayList;
|
19
|
19
|
import java.util.List;
|
|
20
|
+import java.util.stream.Collectors;
|
20
|
21
|
|
21
|
22
|
/**
|
22
|
23
|
* @ClassName RoleService
|
|
@@ -168,7 +169,7 @@ public class RoleService {
|
168
|
169
|
}
|
169
|
170
|
}
|
170
|
171
|
}
|
171
|
|
- return lst;
|
|
172
|
+ return lst.stream().filter(m -> m.getModulechilds() != null && m.getModulechilds().size() > 0).collect(Collectors.toList());
|
172
|
173
|
}
|
173
|
174
|
|
174
|
175
|
//判断集合中是否存在模块
|