Browse Source

Merge branch 'dev_party_mange'

feature/teamB_zz_wgh
zhaoqifeng 3 years ago
parent
commit
fa97a889cd
  1. 1
      epmet-user/epmet-user-server/src/main/java/com/epmet/service/impl/IcResiUserServiceImpl.java

1
epmet-user/epmet-user-server/src/main/java/com/epmet/service/impl/IcResiUserServiceImpl.java

@ -2493,6 +2493,7 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi
wrapper.eq(IcResiUserEntity::getCustomerId, customerId);
wrapper.and(wq -> wq.eq(IcResiUserEntity::getAgencyId, agencyId).or().like(IcResiUserEntity::getPids, agencyId));
wrapper.eq(IcResiUserEntity::getIsVolunteer, NumConstant.ONE_STR);
wrapper.eq(IcResiUserEntity::getStatus, NumConstant.ZERO_STR);
List<IcResiUserEntity> list = baseDao.selectList(wrapper);
if (CollectionUtils.isEmpty(list)) {
return Collections.emptyList();

Loading…
Cancel
Save