update 同步 vue版本更改
parent
fac7387ab8
commit
eba77c7aff
|
|
@ -103,6 +103,11 @@ public class SysUserBo extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
private Long roleId;
|
private Long roleId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 排除不查询的用户(工作流用)
|
||||||
|
*/
|
||||||
|
private String excludeUserIds;
|
||||||
|
|
||||||
public SysUserBo(Long userId) {
|
public SysUserBo(Long userId) {
|
||||||
this.userId = userId;
|
this.userId = userId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,9 @@ public class SysUserServiceImpl implements ISysUserService {
|
||||||
ids.add(user.getDeptId());
|
ids.add(user.getDeptId());
|
||||||
w.in("u.dept_id", ids);
|
w.in("u.dept_id", ids);
|
||||||
}).orderByAsc("u.user_id");
|
}).orderByAsc("u.user_id");
|
||||||
|
if (StringUtils.isNotBlank(user.getExcludeUserIds())) {
|
||||||
|
wrapper.notIn("u.user_id", StringUtils.splitList(user.getExcludeUserIds()));
|
||||||
|
}
|
||||||
return wrapper;
|
return wrapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue