| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.style24.admin.biz.dao;
- import java.util.Collection;
- import com.style24.core.support.annotation.ShopDs;
- import com.style24.persistence.domain.Faq;
- /**
- * FAQ Dao
- *
- * @author gagamel
- * @since 2020. 11. 3
- */
- @ShopDs
- public interface TsaFaqDao {
- /**
- * FAQ 목록
- * @param faq - FAQ 정보
- * @return
- * @author gagamel
- * @since 2020. 11. 3
- */
- Collection<Faq> getFaqList(Faq faq);
- /**
- * FAQ 등록/수정
- * @param faq - FAQ 정보
- * @author gagamel
- * @since 2020. 11. 3
- */
- void saveFaq(Faq faq);
- /**
- * FAQ 상세
- * @param faqSq - FAQ일련번호
- * @return
- * @author gagamel
- * @since 2020. 11. 3
- */
- Faq getFaq(Integer faqSq);
- }
|