| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.style24.admin.biz.dao;
- import java.util.Collection;
-
- import com.style24.persistence.domain.SmsSend;
- import com.style24.core.support.annotation.ShopDs;
- import org.springframework.stereotype.Repository;
- /**
- * 발송이력조회 Dao
- *
- * @author smlee
- * @since 2020. 11. 16
- */
- @ShopDs
- @Repository
- public interface TsaSmsSendDao {
-
- /**
- * 발송이력 목록
- *
- * @param withdraw
- * @return Collection<SmsSend>
- * @author smlee
- * @since 2021. 11. 16
- */
- Collection<SmsSend> getSmsSendList(SmsSend smsSend);
-
- /**
- * 발송이력 상세
- *
- * @param SmsSend
- * @return SmsSend
- * @author smlee
- * @since 2021. 11. 25
- */
- SmsSend getSmsSendDetail(SmsSend smsSend);
-
- }
|