mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-03-04 19:33:08 +08:00
fixed:“用户管理”里面,点击“员工工号”报错:“参数:rowld不能为空”
This commit is contained in:
parent
5727a49470
commit
dbd57feffb
1 changed files with 3 additions and 1 deletions
|
@ -90,7 +90,9 @@ public class SysEveUserStaffServiceImpl extends SkyeyeBusinessServiceImpl<SysEve
|
|||
if (sysEveUserStaffQuery.getBindAccount() == WhetherEnum.DISABLE_USING.getKey()) {
|
||||
// 未绑定账号
|
||||
String userIdKey = MybatisPlusUtil.toColumns(SysEveUserStaff::getUserId);
|
||||
wrapper.isNull(userIdKey).or().eq(userIdKey, StrUtil.EMPTY);
|
||||
wrapper.and(wra -> {
|
||||
wra.isNull(userIdKey).or().eq(userIdKey, StrUtil.EMPTY);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue