update运营商VIP

This commit is contained in:
2023-11-24 16:22:45 +08:00
parent 6344bf3817
commit 165efe4e96
4 changed files with 8 additions and 2 deletions

View File

@@ -119,5 +119,5 @@ public interface MemberBasicInfoMapper {
*/
List<MerchantInfoVO> getMerchantListByAuth(@Param("deptIds") List<String> deptIds);
List<MerchantVipVO> queryMerchantVipList(@Param("merchantIdList") List<String> merchantIdList);
List<MerchantVipVO> queryMerchantVipList(@Param("merchantIdList") List<String> merchantIdList, @Param("dto") QueryMemberInfoDTO dto);
}

View File

@@ -488,7 +488,7 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
List<MerchantInfoVO> merchantInfoVOList = loginUserDetail.getMerchantInfoVOList();
List<String> merchantIdList = merchantInfoVOList.stream()
.map(MerchantInfoVO::getMerchantId).collect(Collectors.toList());
List<MerchantVipVO> resultList = memberBasicInfoMapper.queryMerchantVipList(merchantIdList);
List<MerchantVipVO> resultList = memberBasicInfoMapper.queryMerchantVipList(merchantIdList, dto);
return resultList;
}