package egovframework.com.site.service; public interface SystemManageService { /** * 시스템관리 - 기본정보 조회 * * @param systemVO * @return * @throws Exception */ public SystemVO selectSystemInfo(SystemVO systemVO) throws Exception; /** * 시스템관리 - 기본정보 등록 * * @param systemVO * @throws Exception */ public void insertSystemInfo(SystemVO systemVO) throws Exception; /** * 시스템관리 - 기본정보 수정 * * @param systemVO * @throws Exception */ public void updateSystemInfo(SystemVO systemVO) throws Exception; }