教学管理bug修改
This commit is contained in:
parent
a014bcc40d
commit
4801d11b3b
@ -708,6 +708,9 @@ public class SysUserService implements ISysUserService {
|
||||
|
||||
@Override
|
||||
public List<SysUser> findEntity(List<Long> ids, String orderBy) {
|
||||
if (CollectionUtils.isEmpty(ids)) {
|
||||
return new ArrayList<>();
|
||||
} else {
|
||||
SysUserExample example = new SysUserExample();
|
||||
if (StringUtils.hasText(orderBy)) {
|
||||
example.setOrderByClause(orderBy);
|
||||
@ -715,6 +718,7 @@ public class SysUserService implements ISysUserService {
|
||||
example.createCriteria().andIdIn(ids);
|
||||
return sysUserDAO.selectByExample(example);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void confirmExist(Long id) {
|
||||
|
Loading…
Reference in New Issue
Block a user