|
|
@@ -343,6 +343,9 @@ public class TmUserServiceImpl extends ServiceImpl<ITmUserMapper, TmUser> implem
|
|
|
@Override
|
|
|
public HashMap<String, TmUser> getByIds(Set<String> createorIds) {
|
|
|
HashMap<String, TmUser> map = new HashMap<>();
|
|
|
+ if(createorIds.isEmpty()){
|
|
|
+ return map;
|
|
|
+ }
|
|
|
LambdaQueryWrapper<TmUser> wrapper = new LambdaQueryWrapper<>();
|
|
|
wrapper.in(TmUser::getId,createorIds);
|
|
|
List<TmUser> list = this.list(wrapper);
|