Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[포털 사이트][게시판생성관리] 롬복 생성자 기반 종속성 주입 #30

Open
wants to merge 3 commits into
base: contribution
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,55 +1,57 @@
package egovframework.let.cop.bbs.service.impl;
import egovframework.let.cop.bbs.service.BoardMaster;
import egovframework.let.cop.bbs.service.BoardMasterVO;

import org.egovframe.rte.psl.dataaccess.EgovAbstractMapper;

import org.springframework.stereotype.Repository;

import egovframework.let.cop.bbs.service.BoardMaster;
import egovframework.let.cop.bbs.service.BoardMasterVO;

/**
* 2단계 기능 추가 (댓글관리, 만족도조사) 관리를 위한 데이터 접근 클래스
*
* @author 공통 서비스 개발팀 한성곤
* @since 2009.06.26
* @version 1.0
* @see
*
* <pre>
*
* <pre>
* << 개정이력(Modification Information) >>
*
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2009.06.26 한성곤 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2009.06.26 한성곤 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.10.08 안단희 롬복 생성자 기반 종속성 주입
*
* </pre>
* </pre>
*/
@Repository("BBSAddedOptionsDAO")
@Repository
public class BBSAddedOptionsDAO extends EgovAbstractMapper {

/**
* 신규 게시판 추가기능 정보를 등록한다.
*
* @param BoardMaster
*/
public int insertAddedOptionsInf(BoardMaster boardMaster) throws Exception {
return insert("BBSAddedOptionsDAO.insertAddedOptionsInf", boardMaster);
}
/**
* 게시판 추가기능 정보 한 건을 상세조회 한다.
*
* @param BoardMasterVO
*/
public BoardMasterVO selectAddedOptionsInf(BoardMaster vo) throws Exception {
return (BoardMasterVO)selectOne("BBSAddedOptionsDAO.selectAddedOptionsInf", vo);
}
/**
* 게시판 추가기능 정보를 수정한다.
*
* @param BoardMaster
*/
public void updateAddedOptionsInf(BoardMaster boardMaster) throws Exception {
update("BBSAddedOptionsDAO.updateAddedOptionsInf", boardMaster);
}
/**
* 신규 게시판 추가기능 정보를 등록한다.
*
* @param BoardMaster
*/
public int insertAddedOptionsInf(BoardMaster boardMaster) throws Exception {
return insert("BBSAddedOptionsDAO.insertAddedOptionsInf", boardMaster);
}

/**
* 게시판 추가기능 정보 한 건을 상세조회 한다.
*
* @param BoardMasterVO
*/
public BoardMasterVO selectAddedOptionsInf(BoardMaster vo) throws Exception {
return (BoardMasterVO) selectOne("BBSAddedOptionsDAO.selectAddedOptionsInf", vo);
}

/**
* 게시판 추가기능 정보를 수정한다.
*
* @param BoardMaster
*/
public void updateAddedOptionsInf(BoardMaster boardMaster) throws Exception {
update("BBSAddedOptionsDAO.updateAddedOptionsInf", boardMaster);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* 게시판 속성정보 관리를 위한 데이터 접근 클래스
*
*
* @author 공통 서비스 개발팀 이삼섭
* @since 2009.03.12
* @version 1.0
Expand All @@ -21,13 +21,14 @@
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2009.03.12 이삼섭 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2009.03.12 이삼섭 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2024.10.08 안단희 롬복 생성자 기반 종속성 주입
*
* </pre>
*/
@Repository("BBSAttributeManageDAO")
@Repository
public class BBSAttributeManageDAO extends EgovAbstractMapper {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* 게시판 속성정보 관리를 위한 데이터 접근 클래스
*
*
* @author 공통 서비스 개발팀 한성곤
* @since 2009.08.25
* @version 1.0
Expand All @@ -21,13 +21,14 @@
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2009.08.25 한성곤 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2009.08.25 한성곤 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2024.10.08 안단희 롬복 생성자 기반 종속성 주입
*
* </pre>
*/
@Repository("BBSLoneMasterDAO")
@Repository
public class BBSLoneMasterDAO extends EgovAbstractMapper {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* 게시물 관리를 위한 데이터 접근 클래스
*
*
* @author 공통 서비스 개발팀 이삼섭
* @since 2009.03.19
* @version 1.0
Expand All @@ -22,13 +22,14 @@
*
* 수정일 수정자 수정내용
* ------- -------- ---------------------------
* 2009.03.19 이삼섭 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2009.03.19 이삼섭 최초 생성
* 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
* 2024.08.10 이백행 이클립스 문제(Problems) 제거
* 2024.10.08 안단희 롬복 생성자 기반 종속성 주입
*
* </pre>
*/
@Repository("BBSManageDAO")
@Repository
public class BBSManageDAO extends EgovAbstractMapper {

/**
Expand Down
Loading