From 90419f3f66edc4a1b41d4d3ed1795dd70c078961 Mon Sep 17 00:00:00 2001 From: KKN Date: Tue, 12 Oct 2021 09:29:28 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B6=A9=EB=8F=8C=20=EC=B2=98=EB=A6=AC=20?= =?UTF-8?q?=EC=9E=91=EC=97=85=20-=20=EC=86=8C=EC=8A=A4=20=EB=B3=B5?= =?UTF-8?q?=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nlib/col/service/impl/InterestDAO.java | 73 ------------------- 1 file changed, 73 deletions(-) diff --git a/src/main/java/nlib/col/service/impl/InterestDAO.java b/src/main/java/nlib/col/service/impl/InterestDAO.java index b017ff49..36519b87 100644 --- a/src/main/java/nlib/col/service/impl/InterestDAO.java +++ b/src/main/java/nlib/col/service/impl/InterestDAO.java @@ -1,4 +1,3 @@ -<<<<<<< HEAD package nlib.col.service.impl; import java.util.List; @@ -69,76 +68,4 @@ public class InterestDAO extends EgovComAbstractDAO public List selectOrgList(CollectionVO vo) { return selectList("InterestDAO.selectOrgList",vo); } -======= -package nlib.col.service.impl; - -import java.util.List; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.stereotype.Repository; - -import egovframework.com.cmm.service.impl.EgovComAbstractDAO; -import nlib.col.service.CollectionVO; -import nlib.col.service.DeptVO; -import nlib.restful.DataApi; -import nlib.restful.service.DataApiReqVO; -import nlib.restful.service.DataApiResVO; - -@Repository("interestDAO") -public class InterestDAO extends EgovComAbstractDAO -{ - private static final Logger log = LoggerFactory.getLogger(InterestDAO.class); - - /** - * 관심 자료 목록을 조회한다. - * - * @param CollectionVO - * @return - */ - public List listInterests(CollectionVO vo) { - return selectList("InterestDAO.listInterests", vo); - } - /** - * 관심 자료 목록의 개수를 조회한다. - * - * @param CollectionVO - * @return - */ - public int countListInterests(CollectionVO vo) { - return selectOne("InterestDAO.countListInterests", vo); - } - - /** - * 관심자료 목록 삭제 - * @param masterIdList - */ - public void deleteInterests(CollectionVO vo) { - delete("InterestDAO.deleteInterests", vo); - } - - /** - * 관심자료 추가시 중복체크용 count - * @param vo - * @return - */ - public int countInterest(CollectionVO vo) { - return selectOne("InterestDAO.countInterest",vo); - } - - /** - * 관심자료 추가 - * @param vo - */ - public void insertInterest(CollectionVO vo) { - insert("InterestDAO.insertInterest",vo); - } - /** - * 문화원 목록 조회 - * @return - */ - public List selectOrgList(CollectionVO vo) { - return selectList("InterestDAO.selectOrgList",vo); - } ->>>>>>> refs/remotes/origin/master } \ No newline at end of file