|
|
@@ -332,6 +332,15 @@ public class RemoteSystemServiceImpl implements RemoteSystemService {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public EntCacheResDto queryEntTreeById(Long entId) {
|
|
|
+ Map<Long, EntCacheResDto> longEntCacheResDtoMap = queryEntTreeByIds(Collections.singletonList(entId));
|
|
|
+ if (longEntCacheResDtoMap.isEmpty()) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ return longEntCacheResDtoMap.get(entId);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<EntCacheResDto> queryEntCacheByIds(List<Long> entIds) {
|
|
|
if (CollectionUtils.isEmpty(entIds)) {
|