TsaCardPromotionDao.java 688 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.style24.admin.biz.dao;
  2. import java.util.Collection;
  3. import com.style24.core.support.annotation.ShopDs;
  4. import com.style24.persistence.domain.CardPromotion;
  5. /**
  6. * 카드프로모션 Dao
  7. *
  8. * @author eskim
  9. * @since 2021. 01. 29
  10. */
  11. @ShopDs
  12. public interface TsaCardPromotionDao {
  13. /**
  14. * 카드무이자할부 목록 건수
  15. * @param cardPromotion
  16. * @return
  17. * @author eskim
  18. * @since 2021. 1. 29
  19. */
  20. int getCardInterestListCount(CardPromotion cardPromotion);
  21. /**
  22. * 카드무이자할부 목록
  23. * @param cardPromotion
  24. * @return
  25. * @author eskim
  26. * @since 2021. 1. 29
  27. */
  28. Collection<CardPromotion> getCardInterestList(CardPromotion cardPromotion);
  29. }