springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java
@@ -78,6 +78,7 @@ communityIds = new ArrayList<>(); communityIds.add(communityId); } comPbCheckUnit.setCommunityIds(communityIds); IPage<ComPbCheckUnitVo> checkUnitVoPage= this.baseMapper.queryAllByLimit(comPbCheckUnit, new Page(comPbCheckUnit.getPageNum(), comPbCheckUnit.getPageSize())); checkUnitVoPage.getRecords().forEach(checkUnit -> { if(StringUtils.isEmpty(checkUnit.getOrgName())){ @@ -200,6 +201,7 @@ communityIds = new ArrayList<>(); communityIds.add(communityId); } comPbCheckUnit.setCommunityIds(communityIds); IPage<ComPbCheckUnitVo> checkUnitList = this.baseMapper.queryAllByLimit(comPbCheckUnit,new Page(comPbCheckUnit.getPageNum(),comPbCheckUnit.getPageSize())); checkUnitList.getRecords().forEach(checkUnit -> { if(StringUtils.isEmpty(checkUnit.getOrgName())){ springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbMemberServiceImpl.java
@@ -218,6 +218,7 @@ communityIds = new ArrayList<>(); communityIds.add(communityId); } pagePartyOrganizationVO.setCommunityIds(communityIds); Page page = new Page<>(); Long pageNum = pagePartyOrganizationVO.getPageNum(); springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/ComPbMemberMapper.xml
@@ -88,7 +88,7 @@ <if test="dto.orgId != null"> and m.org_id = #{dto.orgId} </if> <if test="dto.communityId != null and dto.communityId !=0"> <if test="dto.communityIds != null and dto.communityIds.size() >0"> and m.community_id IN <foreach collection="dto.communityIds" item="item" open="(" separator="," close=")"> #{item}