package seed.com.user.mypage.impl; import java.util.List; import org.springframework.stereotype.Repository; import egovframework.rte.psl.dataaccess.EgovAbstractDAO; import seed.com.user.mypage.CaseAuthVO; @Repository("caseAuthDAO") public class CaseAuthDAO extends EgovAbstractDAO { public List selectCaseAuthList(CaseAuthVO caseAuthVO) throws Exception { return (List) list("caseAuthDAO.selectCaseAuth", caseAuthVO); } public void insertCaseAuth(CaseAuthVO caseAuthVO) throws Exception { insert("caseAuthDAO.insertCaseAuth", caseAuthVO); } public CaseAuthVO selectRceptNo(CaseAuthVO caseAuthVO) throws Exception{ return (CaseAuthVO) select("caseAuthDAO.selectRceptNo", caseAuthVO); } }