코드 정리

This commit is contained in:
KNKIM 2021-11-17 11:14:00 +09:00
parent fc027dd05f
commit 38e8f018fc
4 changed files with 0 additions and 94 deletions

View File

@ -1,10 +0,0 @@
package nlib.col.service;
import nlib.restful.service.DataApiReqVO;
import nlib.restful.service.DataApiResVO;
public interface ReserveService
{
}

View File

@ -1,16 +0,0 @@
package nlib.col.service.impl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Repository;
import nlib.restful.DataApi;
import nlib.restful.service.DataApiReqVO;
import nlib.restful.service.DataApiResVO;
@Repository("reserveDAO")
public class ReserveDAO extends DataApi
{
private static final Logger log = LoggerFactory.getLogger(ReserveDAO.class);
}

View File

@ -1,20 +0,0 @@
package nlib.col.service.impl;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import nlib.col.service.ReserveService;
import nlib.restful.service.DataApiReqVO;
import nlib.restful.service.DataApiResVO;
@Service("reserveService")
public class ReserveServiceImpl implements ReserveService
{
private static final Logger log = LoggerFactory.getLogger(ReserveServiceImpl.class);
@Resource(name="reserveDAO")
private ReserveDAO reserveDAO;
}

View File

@ -1,48 +0,0 @@
package nlib.col.web;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import nlib.cmm.NlibCommonController;
import nlib.cmm.service.CodeService;
import nlib.cmm.service.NlibProperty;
import nlib.col.service.RentService;
/**
* <pre>
* @Class Name : ReserveController.java
*
* @Description : 자료열람 컨트롤러
*
*
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
*
* </pre>
*
* @ ------------ -------- ---------------------------
* @ 수정일 수정자 수정내용
* @ ------------ -------- ---------------------------
* @ 2021. 10. 01. JSYOO 최초 생성
*
*
* @author 이씨플라자 * DIGITALSHIP JSYOO
* @since 2021. 10. 01.
* @version 1.0
*
*/
@Controller
public class ReserveController extends NlibCommonController
{
private static final Logger log = LoggerFactory.getLogger(ReserveController.class);
static final String DEFUALT_PAGE_SIZE = NlibProperty.getProperty("list.paging.page.size");
@Resource(name = "rentService")
private RentService rentService;
@Resource(name = "codeService")
private CodeService codeService;
}