TsaSmsSendDao.java 750 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.style24.admin.biz.dao;
  2. import java.util.Collection;
  3. import com.style24.persistence.domain.SmsSend;
  4. import com.style24.core.support.annotation.ShopDs;
  5. import org.springframework.stereotype.Repository;
  6. /**
  7. * 발송이력조회 Dao
  8. *
  9. * @author smlee
  10. * @since 2020. 11. 16
  11. */
  12. @ShopDs
  13. @Repository
  14. public interface TsaSmsSendDao {
  15. /**
  16. * 발송이력 목록
  17. *
  18. * @param withdraw
  19. * @return Collection<SmsSend>
  20. * @author smlee
  21. * @since 2021. 11. 16
  22. */
  23. Collection<SmsSend> getSmsSendList(SmsSend smsSend);
  24. /**
  25. * 발송이력 상세
  26. *
  27. * @param SmsSend
  28. * @return SmsSend
  29. * @author smlee
  30. * @since 2021. 11. 25
  31. */
  32. SmsSend getSmsSendDetail(SmsSend smsSend);
  33. }