/* * Copyright 2008-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package itn.let.solr.sys.service; import java.util.List; import itn.let.uss.ion.cnt.service.CntManageVO; /** * @Class Name : ResearchService.java * @Description : ResearchService Class * @Modification Information * @ * @ 수정일 수정자 수정내용 * @ --------- --------- ------------------------------- * @ 2014.07.03 최초생성 * * @author (주)드림웨어 * @since 2014. 09. 26 * @version 1.0 * @see * * Copyright (C) by MOPAS All right reserved. */ public interface ResearchService { List selectResearchList(ResearchVO searchVO) throws Exception; List selectResearchResult(ResearchVO searchVO) throws Exception; int selectResearchListTotCnt(ResearchVO searchVO) throws Exception; ResearchVO selectResearchResultCnt(ResearchVO searchVO) throws Exception; List selectMcUrl(Integer mcIdx) throws Exception; void insertResearch(ResearchVO tempSearchVO) throws Exception; ResearchVO selectMcUrlByProFn(ResearchVO researchVO) throws Exception; ResearchVO selectMcUrlByCntDtId(CntManageVO cntManageVO) throws Exception; }