|
|
@@ -371,7 +371,9 @@ public class UserInfoServiceImpl implements UserInfoService {
|
|
371
|
371
|
Map<String, Object> map = new HashMap<>();
|
|
372
|
372
|
map.put("orgId", orgId);
|
|
373
|
373
|
map.put("roleId", roleId);
|
|
374
|
|
- map.put("realName", "%"+realName+"%");
|
|
|
374
|
+ if (StringUtils.isNotBlank(realName)) {
|
|
|
375
|
+ map.put("realName", "%"+realName+"%");
|
|
|
376
|
+ }
|
|
375
|
377
|
map.put("userId", userId);
|
|
376
|
378
|
map.put("notUserId", notUserId);
|
|
377
|
379
|
List<UserInfo> list = UserInfoMapper.queryUserList(map);
|