|
|
@ -49,6 +49,7 @@ import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.Arrays; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
@ -185,7 +186,10 @@ public class DimCustomerPartymemberServiceImpl extends BaseServiceImpl<DimCustom |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public List<PartyMemberInfoResultDTO> selectPartyMemberInfo(String customerId, List<String> gridIds) { |
|
|
|
return baseDao.selectPartyMemberInfo(customerId, gridIds); |
|
|
|
if (!CollectionUtils.isEmpty(gridIds)){ |
|
|
|
return baseDao.selectPartyMemberInfo(customerId, gridIds); |
|
|
|
} |
|
|
|
return new ArrayList<>(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|