| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.style24.admin.biz.dao;
- import java.util.Collection;
- import com.style24.core.support.annotation.ShopDs;
- import com.style24.persistence.domain.CardPromotion;
- /**
- * 카드프로모션 Dao
- *
- * @author eskim
- * @since 2021. 01. 29
- */
- @ShopDs
- public interface TsaCardPromotionDao {
- /**
- * 카드무이자할부 목록 건수
- * @param cardPromotion
- * @return
- * @author eskim
- * @since 2021. 1. 29
- */
- int getCardInterestListCount(CardPromotion cardPromotion);
- /**
- * 카드무이자할부 목록
- * @param cardPromotion
- * @return
- * @author eskim
- * @since 2021. 1. 29
- */
- Collection<CardPromotion> getCardInterestList(CardPromotion cardPromotion);
- }
|