mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-25 02:32:57 +08:00
受众检查人员时,增加了是否删除检查
This commit is contained in:
@@ -87,7 +87,10 @@ public class UserServiceImpl implements IUserService {
|
||||
|
||||
@Override
|
||||
public List<User> getListByUserNos(List<String> userNos) {
|
||||
return dao.getListByUserNos(userNos);
|
||||
// return dao.getListByUserNos(userNos);
|
||||
//return dao.findList(FieldFilters.in("userNo", userNos));
|
||||
String hql="Select u from "+User.class.getSimpleName()+" u,"+Account.class.getSimpleName()+" a where u.id=a.id and a.deleted=?1";
|
||||
return dao.findListByHql(hql, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user