클래스설계서 기반 템플릿 클래스 생성

This commit is contained in:
KNKIM 2021-07-01 10:33:34 +09:00
parent 58d488795d
commit 257467de44
4 changed files with 152 additions and 0 deletions

View File

@ -0,0 +1,33 @@
package nlib.cmm.service;
import iams.nlib.dataapi.service.DataApiReqVO;
import iams.nlib.dataapi.service.DataApiResVO;
/**
* Description :
* @author
* @since
* @version
* @see
*
* <pre>
* << Modification Information >>
*
* Date Modifier Expression
* ------- -------- ---------------------------
*
*
*
* </pre>
*/
public interface MainService
{
public DataApiResVO selectMainBannerList(DataApiReqVO reqVO);
public DataApiResVO selectMainNoticeList(DataApiReqVO reqVO);
public DataApiResVO selectMainMyRentInfo(DataApiReqVO reqVO);
}

View File

@ -0,0 +1,39 @@
package nlib.cmm.service.impl;
import iams.nlib.dataapi.service.DataApiReqVO;
import iams.nlib.dataapi.service.DataApiResVO;
/**
* Description :
* @author
* @since
* @version
* @see
*
* <pre>
* << Modification Information >>
*
* Date Modifier Expression
* ------- -------- ---------------------------
*
*
*
* </pre>
*/
public class MainDAO
{
public DataApiResVO selectMainBannerList(DataApiReqVO reqVO) {
return null;
}
public DataApiResVO selectMainNoticeList(DataApiReqVO reqVO) {
return null;
}
public DataApiResVO selectMainMyRentInfo(DataApiReqVO reqVO) {
return null;
}
}

View File

@ -0,0 +1,43 @@
package nlib.cmm.service.impl;
import iams.nlib.dataapi.service.DataApiReqVO;
import iams.nlib.dataapi.service.DataApiResVO;
import nlib.cmm.service.MainService;
/**
* Description :
* @author
* @since
* @version
* @see
*
* <pre>
* << Modification Information >>
*
* Date Modifier Expression
* ------- -------- ---------------------------
*
*
*
* </pre>
*/
public class MainServiceImpl implements MainService
{
private MainDAO mainDAO;
public DataApiResVO selectMainBannerList(DataApiReqVO reqVO) {
return null;
}
public DataApiResVO selectMainNoticeList(DataApiReqVO reqVO) {
return null;
}
public DataApiResVO selectMainMyRentInfo(DataApiReqVO reqVO) {
return null;
}
}

View File

@ -0,0 +1,37 @@
package nlib.cmm.web;
import javax.servlet.http.HttpServletRequest;
import org.springframework.ui.ModelMap;
import nlib.cmm.service.MainService;
/**
* Description :
* @author
* @since
* @version
* @see
*
* <pre>
* << Modification Information >>
*
* Date Modifier Expression
* ------- -------- ---------------------------
*
*
*
* </pre>
*/
public class MainController
{
private MainService mainService;
public ModelMap selectMain(HttpServletRequest req) {
return null;
}
}