| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.style24.admin.biz.dao;
- import java.util.Collection;
- import org.springframework.stereotype.Repository;
- import com.style24.core.support.annotation.ShopDs;
- import com.style24.persistence.domain.Poll;
- /**
- * poll Dao
- *
- * @author sowon
- * @since 2021. 2. 19
- */
- @ShopDs
- @Repository
- public interface TsaPollDao {
-
- /**
- * POLL 저장
- *
- * @param poll 정보
- * @author sowon
- * @since 2021. 02. 19
- */
- void savePoll(Poll poll);
-
- /**
- * POLL 문항 삭제
- *
- * @param pollSq
- * @author sowon
- * @since 2021. 2. 19
- */
- void deletePollQuestion(Poll poll);
-
- /**
- * POLL 문항 등록
- *
- * @param Poll 문항 정보
- * @author sowon
- * @since 2021. 2. 19
- */
- void createPollQuestion(Poll poll);
- /**
- * POLL 목록
- *
- * @param Poll
- * @return Poll목록
- * @author sowon
- * @since 2021. 2. 19
- */
- Collection<Poll> getPollList(Poll poll);
- }
|