TsaFaqDao.java 727 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.Faq;
  5. /**
  6. * FAQ Dao
  7. *
  8. * @author gagamel
  9. * @since 2020. 11. 3
  10. */
  11. @ShopDs
  12. public interface TsaFaqDao {
  13. /**
  14. * FAQ 목록
  15. * @param faq - FAQ 정보
  16. * @return
  17. * @author gagamel
  18. * @since 2020. 11. 3
  19. */
  20. Collection<Faq> getFaqList(Faq faq);
  21. /**
  22. * FAQ 등록/수정
  23. * @param faq - FAQ 정보
  24. * @author gagamel
  25. * @since 2020. 11. 3
  26. */
  27. void saveFaq(Faq faq);
  28. /**
  29. * FAQ 상세
  30. * @param faqSq - FAQ일련번호
  31. * @return
  32. * @author gagamel
  33. * @since 2020. 11. 3
  34. */
  35. Faq getFaq(Integer faqSq);
  36. }