|
@@ -494,6 +494,9 @@ public class SceneCooperationServiceImpl extends ServiceImpl<ISceneCooperationMa
|
|
|
|
|
|
@Override
|
|
|
public HashMap<String, List<User>> getByNumList(List<String> numList) {
|
|
|
+ if(numList == null || numList.isEmpty()){
|
|
|
+ return new HashMap<>();
|
|
|
+ }
|
|
|
LambdaQueryWrapper<SceneCooperation> wrapper = new LambdaQueryWrapper<>();
|
|
|
wrapper.in(SceneCooperation::getSceneNum,numList);
|
|
|
List<SceneCooperation> list = this.list(wrapper);
|