package kr.co.takensoft.keris.test.dao; import kr.co.takensoft.keris.test.vo.Test; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 테스트용 DAO 입니다. * * @author 서영석 * @since 2023.10.25 */ //@Repository <-- Class 객체로 생성 해야 됨 @Mapper public interface TestDAO { /** * 데이터 조회 테스트 * * @author 서영석 * @since 2022.09.01 */ public List testDataSelectList (Test test) throws Exception; }