|
@@ -272,6 +272,9 @@ public class ApplyInfoServiceImpl implements IApplyInfoService {
|
|
|
@Cacheable(key = "targetClass + methodName+#p0")
|
|
|
@Override
|
|
|
public List<ApplyInfo> getAppById(List<String> ids) {
|
|
|
+ if(CollectionUtils.isEmpty(ids)) {
|
|
|
+ return Collections.emptyList();
|
|
|
+ }
|
|
|
return applyInfoMapper.selectBatchIds(ids);
|
|
|
}
|
|
|
|