1.分仓查询用户,添加非禁用条件

fencang
x_z 3 years ago
parent e45b61e602
commit 7f2b4284a2

@ -133,6 +133,7 @@ public class AuthAdminServiceImpl implements AuthAdminService {
@Override @Override
public List<AuthAdmin> getHospitalUserList() { public List<AuthAdmin> getHospitalUserList() {
//查询未被禁用的医院用户
List<AuthAdmin> userList = authAdminDao.selectHospitalUser(); List<AuthAdmin> userList = authAdminDao.selectHospitalUser();
if (CollUtil.isEmpty(userList)) { if (CollUtil.isEmpty(userList)) {
return Collections.emptyList(); return Collections.emptyList();

@ -167,5 +167,6 @@
select * select *
from auth_user from auth_user
where CustomerId = 110 where CustomerId = 110
and userFlag != 0
</select> </select>
</mapper> </mapper>
Loading…
Cancel
Save