23 lines
728 B
Java
23 lines
728 B
Java
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<CaseAuthVO> selectCaseAuthList(CaseAuthVO caseAuthVO) throws Exception {
|
|
return (List<CaseAuthVO>) 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);
|
|
}
|
|
}
|