selectAllCmmntyUser(UserInfVO userVO) throws Exception;
-}
diff --git a/src/main/java/itn/let/cop/com/service/TemplateInf.java b/src/main/java/itn/let/cop/com/service/TemplateInf.java
deleted file mode 100644
index 58e1602..0000000
--- a/src/main/java/itn/let/cop/com/service/TemplateInf.java
+++ /dev/null
@@ -1,231 +0,0 @@
-package itn.let.cop.com.service;
-
-import java.io.Serializable;
-
-import org.apache.commons.lang3.builder.ToStringBuilder;
-
-/**
- * 템플릿 정보를 관리하기 위한 모델 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.03.17
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.03.17 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@SuppressWarnings("serial")
-public class TemplateInf implements Serializable {
-
- /** 최초등록자 아이디 */
- private String frstRegisterId = "";
-
- /** 최초등록시점 */
- private String frstRegisterPnttm = "";
-
- /** 최종수정자 아이디 */
- private String lastUpdusrId = "";
-
- /** 최종수정시점 */
- private String lastUpdusrPnttm = "";
-
- /** 템플릿 경로 */
- private String tmplatCours = "";
-
- /** 템플릿 아이디 */
- private String tmplatId = "";
-
- /** 템플릿 명 */
- private String tmplatNm = "";
-
- /** 탬플릿 구분코드 */
- private String tmplatSeCode = "";
-
- /** 사용여부 */
- private String useAt = "";
-
- /**
- * frstRegisterId attribute를 리턴한다.
- *
- * @return the frstRegisterId
- */
- public String getFrstRegisterId() {
- return frstRegisterId;
- }
-
- /**
- * frstRegisterId attribute 값을 설정한다.
- *
- * @param frstRegisterId
- * the frstRegisterId to set
- */
- public void setFrstRegisterId(String frstRegisterId) {
- this.frstRegisterId = frstRegisterId;
- }
-
- /**
- * frstRegisterPnttm attribute를 리턴한다.
- *
- * @return the frstRegisterPnttm
- */
- public String getFrstRegisterPnttm() {
- return frstRegisterPnttm;
- }
-
- /**
- * frstRegisterPnttm attribute 값을 설정한다.
- *
- * @param frstRegisterPnttm
- * the frstRegisterPnttm to set
- */
- public void setFrstRegisterPnttm(String frstRegisterPnttm) {
- this.frstRegisterPnttm = frstRegisterPnttm;
- }
-
- /**
- * lastUpdusrId attribute를 리턴한다.
- *
- * @return the lastUpdusrId
- */
- public String getLastUpdusrId() {
- return lastUpdusrId;
- }
-
- /**
- * lastUpdusrId attribute 값을 설정한다.
- *
- * @param lastUpdusrId
- * the lastUpdusrId to set
- */
- public void setLastUpdusrId(String lastUpdusrId) {
- this.lastUpdusrId = lastUpdusrId;
- }
-
- /**
- * lastUpdusrPnttm attribute를 리턴한다.
- *
- * @return the lastUpdusrPnttm
- */
- public String getLastUpdusrPnttm() {
- return lastUpdusrPnttm;
- }
-
- /**
- * lastUpdusrPnttm attribute 값을 설정한다.
- *
- * @param lastUpdusrPnttm
- * the lastUpdusrPnttm to set
- */
- public void setLastUpdusrPnttm(String lastUpdusrPnttm) {
- this.lastUpdusrPnttm = lastUpdusrPnttm;
- }
-
- /**
- * tmplatCours attribute를 리턴한다.
- *
- * @return the tmplatCours
- */
- public String getTmplatCours() {
- return tmplatCours;
- }
-
- /**
- * tmplatCours attribute 값을 설정한다.
- *
- * @param tmplatCours
- * the tmplatCours to set
- */
- public void setTmplatCours(String tmplatCours) {
- this.tmplatCours = tmplatCours;
- }
-
- /**
- * tmplatId attribute를 리턴한다.
- *
- * @return the tmplatId
- */
- public String getTmplatId() {
- return tmplatId;
- }
-
- /**
- * tmplatId attribute 값을 설정한다.
- *
- * @param tmplatId
- * the tmplatId to set
- */
- public void setTmplatId(String tmplatId) {
- this.tmplatId = tmplatId;
- }
-
- /**
- * tmplatNm attribute를 리턴한다.
- *
- * @return the tmplatNm
- */
- public String getTmplatNm() {
- return tmplatNm;
- }
-
- /**
- * tmplatNm attribute 값을 설정한다.
- *
- * @param tmplatNm
- * the tmplatNm to set
- */
- public void setTmplatNm(String tmplatNm) {
- this.tmplatNm = tmplatNm;
- }
-
- /**
- * tmplatSeCode attribute를 리턴한다.
- *
- * @return the tmplatSeCode
- */
- public String getTmplatSeCode() {
- return tmplatSeCode;
- }
-
- /**
- * tmplatSeCode attribute 값을 설정한다.
- *
- * @param tmplatSeCode
- * the tmplatSeCode to set
- */
- public void setTmplatSeCode(String tmplatSeCode) {
- this.tmplatSeCode = tmplatSeCode;
- }
-
- /**
- * useAt attribute를 리턴한다.
- *
- * @return the useAt
- */
- public String getUseAt() {
- return useAt;
- }
-
- /**
- * useAt attribute 값을 설정한다.
- *
- * @param useAt
- * the useAt to set
- */
- public void setUseAt(String useAt) {
- this.useAt = useAt;
- }
-
- /**
- * toString 메소드를 대치한다.
- */
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/TemplateInfVO.java b/src/main/java/itn/let/cop/com/service/TemplateInfVO.java
deleted file mode 100644
index 15924a0..0000000
--- a/src/main/java/itn/let/cop/com/service/TemplateInfVO.java
+++ /dev/null
@@ -1,407 +0,0 @@
-package itn.let.cop.com.service;
-
-import java.io.Serializable;
-
-import org.apache.commons.lang3.builder.ToStringBuilder;
-
-/**
- * 템플릿 정보 관리를 위한 VO 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.03.17
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.03.17 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@SuppressWarnings("serial")
-public class TemplateInfVO extends TemplateInf implements Serializable {
-
- /** 최초 등록자명 */
- private String frstRegisterNm = "";
-
- /** 최종 수정자명 */
- private String lastUpdusrNm = "";
-
- /** 템플릿 구분 코드명 */
- private String tmplatSeCodeNm = "";
-
- /** 검색시작일 */
- private String searchBgnDe = "";
-
- /** 검색조건 */
- private String searchCnd = "";
-
- /** 검색종료일 */
- private String searchEndDe = "";
-
- /** 검색단어 */
- private String searchWrd = "";
-
- /** 정렬순서(DESC,ASC) */
- private String sortOrdr = "";
-
- /** 검색사용여부 */
- private String searchUseYn = "";
-
- /** 현재페이지 */
- private int pageIndex = 1;
-
- /** 페이지갯수 */
- private int pageUnit = 10;
-
- /** 페이지사이즈 */
- private int pageSize = 10;
-
- /** 첫페이지 인덱스 */
- private int firstIndex = 1;
-
- /** 마지막페이지 인덱스 */
- private int lastIndex = 1;
-
- /** 페이지당 레코드 개수 */
- private int recordCountPerPage = 10;
-
- /** 레코드 번호 */
- private int rowNo = 0;
-
- /** 구분 유형 */
- private String typeFlag = "";
-
- /**
- * frstRegisterNm attribute를 리턴한다.
- *
- * @return the frstRegisterNm
- */
- public String getFrstRegisterNm() {
- return frstRegisterNm;
- }
-
- /**
- * frstRegisterNm attribute 값을 설정한다.
- *
- * @param frstRegisterNm
- * the frstRegisterNm to set
- */
- public void setFrstRegisterNm(String frstRegisterNm) {
- this.frstRegisterNm = frstRegisterNm;
- }
-
- /**
- * lastUpdusrNm attribute를 리턴한다.
- *
- * @return the lastUpdusrNm
- */
- public String getLastUpdusrNm() {
- return lastUpdusrNm;
- }
-
- /**
- * lastUpdusrNm attribute 값을 설정한다.
- *
- * @param lastUpdusrNm
- * the lastUpdusrNm to set
- */
- public void setLastUpdusrNm(String lastUpdusrNm) {
- this.lastUpdusrNm = lastUpdusrNm;
- }
-
- /**
- * tmplatSeCodeNm attribute를 리턴한다.
- *
- * @return the tmplatSeCodeNm
- */
- public String getTmplatSeCodeNm() {
- return tmplatSeCodeNm;
- }
-
- /**
- * tmplatSeCodeNm attribute 값을 설정한다.
- *
- * @param tmplatSeCodeNm
- * the tmplatSeCodeNm to set
- */
- public void setTmplatSeCodeNm(String tmplatSeCodeNm) {
- this.tmplatSeCodeNm = tmplatSeCodeNm;
- }
-
- /**
- * searchBgnDe attribute를 리턴한다.
- *
- * @return the searchBgnDe
- */
- public String getSearchBgnDe() {
- return searchBgnDe;
- }
-
- /**
- * searchBgnDe attribute 값을 설정한다.
- *
- * @param searchBgnDe
- * the searchBgnDe to set
- */
- public void setSearchBgnDe(String searchBgnDe) {
- this.searchBgnDe = searchBgnDe;
- }
-
- /**
- * searchCnd attribute를 리턴한다.
- *
- * @return the searchCnd
- */
- public String getSearchCnd() {
- return searchCnd;
- }
-
- /**
- * searchCnd attribute 값을 설정한다.
- *
- * @param searchCnd
- * the searchCnd to set
- */
- public void setSearchCnd(String searchCnd) {
- this.searchCnd = searchCnd;
- }
-
- /**
- * searchEndDe attribute를 리턴한다.
- *
- * @return the searchEndDe
- */
- public String getSearchEndDe() {
- return searchEndDe;
- }
-
- /**
- * searchEndDe attribute 값을 설정한다.
- *
- * @param searchEndDe
- * the searchEndDe to set
- */
- public void setSearchEndDe(String searchEndDe) {
- this.searchEndDe = searchEndDe;
- }
-
- /**
- * searchWrd attribute를 리턴한다.
- *
- * @return the searchWrd
- */
- public String getSearchWrd() {
- return searchWrd;
- }
-
- /**
- * searchWrd attribute 값을 설정한다.
- *
- * @param searchWrd
- * the searchWrd to set
- */
- public void setSearchWrd(String searchWrd) {
- this.searchWrd = searchWrd;
- }
-
- /**
- * sortOrdr attribute를 리턴한다.
- *
- * @return the sortOrdr
- */
- public String getSortOrdr() {
- return sortOrdr;
- }
-
- /**
- * sortOrdr attribute 값을 설정한다.
- *
- * @param sortOrdr
- * the sortOrdr to set
- */
- public void setSortOrdr(String sortOrdr) {
- this.sortOrdr = sortOrdr;
- }
-
- /**
- * searchUseYn attribute를 리턴한다.
- *
- * @return the searchUseYn
- */
- public String getSearchUseYn() {
- return searchUseYn;
- }
-
- /**
- * searchUseYn attribute 값을 설정한다.
- *
- * @param searchUseYn
- * the searchUseYn to set
- */
- public void setSearchUseYn(String searchUseYn) {
- this.searchUseYn = searchUseYn;
- }
-
- /**
- * pageIndex attribute를 리턴한다.
- *
- * @return the pageIndex
- */
- public int getPageIndex() {
- return pageIndex;
- }
-
- /**
- * pageIndex attribute 값을 설정한다.
- *
- * @param pageIndex
- * the pageIndex to set
- */
- public void setPageIndex(int pageIndex) {
- this.pageIndex = pageIndex;
- }
-
- /**
- * pageUnit attribute를 리턴한다.
- *
- * @return the pageUnit
- */
- public int getPageUnit() {
- return pageUnit;
- }
-
- /**
- * pageUnit attribute 값을 설정한다.
- *
- * @param pageUnit
- * the pageUnit to set
- */
- public void setPageUnit(int pageUnit) {
- this.pageUnit = pageUnit;
- }
-
- /**
- * pageSize attribute를 리턴한다.
- *
- * @return the pageSize
- */
- public int getPageSize() {
- return pageSize;
- }
-
- /**
- * pageSize attribute 값을 설정한다.
- *
- * @param pageSize
- * the pageSize to set
- */
- public void setPageSize(int pageSize) {
- this.pageSize = pageSize;
- }
-
- /**
- * firstIndex attribute를 리턴한다.
- *
- * @return the firstIndex
- */
- public int getFirstIndex() {
- return firstIndex;
- }
-
- /**
- * firstIndex attribute 값을 설정한다.
- *
- * @param firstIndex
- * the firstIndex to set
- */
- public void setFirstIndex(int firstIndex) {
- this.firstIndex = firstIndex;
- }
-
- /**
- * lastIndex attribute를 리턴한다.
- *
- * @return the lastIndex
- */
- public int getLastIndex() {
- return lastIndex;
- }
-
- /**
- * lastIndex attribute 값을 설정한다.
- *
- * @param lastIndex
- * the lastIndex to set
- */
- public void setLastIndex(int lastIndex) {
- this.lastIndex = lastIndex;
- }
-
- /**
- * recordCountPerPage attribute를 리턴한다.
- *
- * @return the recordCountPerPage
- */
- public int getRecordCountPerPage() {
- return recordCountPerPage;
- }
-
- /**
- * recordCountPerPage attribute 값을 설정한다.
- *
- * @param recordCountPerPage
- * the recordCountPerPage to set
- */
- public void setRecordCountPerPage(int recordCountPerPage) {
- this.recordCountPerPage = recordCountPerPage;
- }
-
- /**
- * rowNo attribute를 리턴한다.
- *
- * @return the rowNo
- */
- public int getRowNo() {
- return rowNo;
- }
-
- /**
- * rowNo attribute 값을 설정한다.
- *
- * @param rowNo
- * the rowNo to set
- */
- public void setRowNo(int rowNo) {
- this.rowNo = rowNo;
- }
-
- /**
- * typeFlag attribute를 리턴한다.
- *
- * @return the typeFlag
- */
- public String getTypeFlag() {
- return typeFlag;
- }
-
- /**
- * typeFlag attribute 값을 설정한다.
- *
- * @param typeFlag
- * the typeFlag to set
- */
- public void setTypeFlag(String typeFlag) {
- this.typeFlag = typeFlag;
- }
-
- /**
- * toString 메소드를 대치한다.
- */
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/UserInfVO.java b/src/main/java/itn/let/cop/com/service/UserInfVO.java
deleted file mode 100644
index bc38a1b..0000000
--- a/src/main/java/itn/let/cop/com/service/UserInfVO.java
+++ /dev/null
@@ -1,561 +0,0 @@
-package itn.let.cop.com.service;
-
-import java.io.Serializable;
-
-import org.apache.commons.lang3.builder.ToStringBuilder;
-
-/**
- * 사용자 정보 조회를 위한 VO 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.06
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.06 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@SuppressWarnings("serial")
-public class UserInfVO implements Serializable {
-
- /** 유일 아이디 */
- private String uniqId = "";
-
- /** 사용자 아이디 */
- private String userId = "";
-
- /** 사용자 명 */
- private String userNm = "";
-
- /** 사용자 우편번호 */
- private String userZip = "";
-
- /** 사용자 주소 */
- private String userAdres = "";
-
- /** 사용자 이메일 */
- private String userEmail = "";
-
- /** 검색시작일 */
- private String searchBgnDe = "";
-
- /** 검색조건 */
- private String searchCnd = "";
-
- /** 검색종료일 */
- private String searchEndDe = "";
-
- /** 검색단어 */
- private String searchWrd = "";
-
- /** 정렬순서(DESC,ASC) */
- private String sortOrdr = "";
-
- /** 검색사용여부 */
- private String searchUseYn = "";
-
- /** 현재페이지 */
- private int pageIndex = 1;
-
- /** 페이지갯수 */
- private int pageUnit = 10;
-
- /** 페이지사이즈 */
- private int pageSize = 10;
-
- /** 첫페이지 인덱스 */
- private int firstIndex = 1;
-
- /** 마지막페이지 인덱스 */
- private int lastIndex = 1;
-
- /** 페이지당 레코드 개수 */
- private int recordCountPerPage = 10;
-
- /** 레코드 번호 */
- private int rowNo = 0;
-
- /** 대상 아이디 */
- private String trgetId = "";
-
- /** 사용여부 */
- private String useAt = "Y";
-
- /** 커뮤니티 아이디 */
- private String cmmntyId = "";
-
- /** 동호회 아이디 */
- private String clubId = "";
-
- /** 대상 중지 여부 (커뮤니티 또는 동호회) */
- private String deletedAt = "N";
-
- /**
- * uniqId attribute를 리턴한다.
- *
- * @return the uniqId
- */
- public String getUniqId() {
- return uniqId;
- }
-
- /**
- * uniqId attribute 값을 설정한다.
- *
- * @param uniqId
- * the uniqId to set
- */
- public void setUniqId(String uniqId) {
- this.uniqId = uniqId;
- }
-
- /**
- * userId attribute를 리턴한다.
- *
- * @return the userId
- */
- public String getUserId() {
- return userId;
- }
-
- /**
- * userId attribute 값을 설정한다.
- *
- * @param userId
- * the userId to set
- */
- public void setUserId(String userId) {
- this.userId = userId;
- }
-
- /**
- * userNm attribute를 리턴한다.
- *
- * @return the userNm
- */
- public String getUserNm() {
- return userNm;
- }
-
- /**
- * userNm attribute 값을 설정한다.
- *
- * @param userNm
- * the userNm to set
- */
- public void setUserNm(String userNm) {
- this.userNm = userNm;
- }
-
- /**
- * userZip attribute를 리턴한다.
- *
- * @return the userZip
- */
- public String getUserZip() {
- return userZip;
- }
-
- /**
- * userZip attribute 값을 설정한다.
- *
- * @param userZip
- * the userZip to set
- */
- public void setUserZip(String userZip) {
- this.userZip = userZip;
- }
-
- /**
- * userAdres attribute를 리턴한다.
- *
- * @return the userAdres
- */
- public String getUserAdres() {
- return userAdres;
- }
-
- /**
- * userAdres attribute 값을 설정한다.
- *
- * @param userAdres
- * the userAdres to set
- */
- public void setUserAdres(String userAdres) {
- this.userAdres = userAdres;
- }
-
- /**
- * userEmail attribute를 리턴한다.
- *
- * @return the userEmail
- */
- public String getUserEmail() {
- return userEmail;
- }
-
- /**
- * userEmail attribute 값을 설정한다.
- *
- * @param userEmail
- * the userEmail to set
- */
- public void setUserEmail(String userEmail) {
- this.userEmail = userEmail;
- }
-
- /**
- * searchBgnDe attribute를 리턴한다.
- *
- * @return the searchBgnDe
- */
- public String getSearchBgnDe() {
- return searchBgnDe;
- }
-
- /**
- * searchBgnDe attribute 값을 설정한다.
- *
- * @param searchBgnDe
- * the searchBgnDe to set
- */
- public void setSearchBgnDe(String searchBgnDe) {
- this.searchBgnDe = searchBgnDe;
- }
-
- /**
- * searchCnd attribute를 리턴한다.
- *
- * @return the searchCnd
- */
- public String getSearchCnd() {
- return searchCnd;
- }
-
- /**
- * searchCnd attribute 값을 설정한다.
- *
- * @param searchCnd
- * the searchCnd to set
- */
- public void setSearchCnd(String searchCnd) {
- this.searchCnd = searchCnd;
- }
-
- /**
- * searchEndDe attribute를 리턴한다.
- *
- * @return the searchEndDe
- */
- public String getSearchEndDe() {
- return searchEndDe;
- }
-
- /**
- * searchEndDe attribute 값을 설정한다.
- *
- * @param searchEndDe
- * the searchEndDe to set
- */
- public void setSearchEndDe(String searchEndDe) {
- this.searchEndDe = searchEndDe;
- }
-
- /**
- * searchWrd attribute를 리턴한다.
- *
- * @return the searchWrd
- */
- public String getSearchWrd() {
- return searchWrd;
- }
-
- /**
- * searchWrd attribute 값을 설정한다.
- *
- * @param searchWrd
- * the searchWrd to set
- */
- public void setSearchWrd(String searchWrd) {
- this.searchWrd = searchWrd;
- }
-
- /**
- * sortOrdr attribute를 리턴한다.
- *
- * @return the sortOrdr
- */
- public String getSortOrdr() {
- return sortOrdr;
- }
-
- /**
- * sortOrdr attribute 값을 설정한다.
- *
- * @param sortOrdr
- * the sortOrdr to set
- */
- public void setSortOrdr(String sortOrdr) {
- this.sortOrdr = sortOrdr;
- }
-
- /**
- * searchUseYn attribute를 리턴한다.
- *
- * @return the searchUseYn
- */
- public String getSearchUseYn() {
- return searchUseYn;
- }
-
- /**
- * searchUseYn attribute 값을 설정한다.
- *
- * @param searchUseYn
- * the searchUseYn to set
- */
- public void setSearchUseYn(String searchUseYn) {
- this.searchUseYn = searchUseYn;
- }
-
- /**
- * pageIndex attribute를 리턴한다.
- *
- * @return the pageIndex
- */
- public int getPageIndex() {
- return pageIndex;
- }
-
- /**
- * pageIndex attribute 값을 설정한다.
- *
- * @param pageIndex
- * the pageIndex to set
- */
- public void setPageIndex(int pageIndex) {
- this.pageIndex = pageIndex;
- }
-
- /**
- * pageUnit attribute를 리턴한다.
- *
- * @return the pageUnit
- */
- public int getPageUnit() {
- return pageUnit;
- }
-
- /**
- * pageUnit attribute 값을 설정한다.
- *
- * @param pageUnit
- * the pageUnit to set
- */
- public void setPageUnit(int pageUnit) {
- this.pageUnit = pageUnit;
- }
-
- /**
- * pageSize attribute를 리턴한다.
- *
- * @return the pageSize
- */
- public int getPageSize() {
- return pageSize;
- }
-
- /**
- * pageSize attribute 값을 설정한다.
- *
- * @param pageSize
- * the pageSize to set
- */
- public void setPageSize(int pageSize) {
- this.pageSize = pageSize;
- }
-
- /**
- * firstIndex attribute를 리턴한다.
- *
- * @return the firstIndex
- */
- public int getFirstIndex() {
- return firstIndex;
- }
-
- /**
- * firstIndex attribute 값을 설정한다.
- *
- * @param firstIndex
- * the firstIndex to set
- */
- public void setFirstIndex(int firstIndex) {
- this.firstIndex = firstIndex;
- }
-
- /**
- * lastIndex attribute를 리턴한다.
- *
- * @return the lastIndex
- */
- public int getLastIndex() {
- return lastIndex;
- }
-
- /**
- * lastIndex attribute 값을 설정한다.
- *
- * @param lastIndex
- * the lastIndex to set
- */
- public void setLastIndex(int lastIndex) {
- this.lastIndex = lastIndex;
- }
-
- /**
- * recordCountPerPage attribute를 리턴한다.
- *
- * @return the recordCountPerPage
- */
- public int getRecordCountPerPage() {
- return recordCountPerPage;
- }
-
- /**
- * recordCountPerPage attribute 값을 설정한다.
- *
- * @param recordCountPerPage
- * the recordCountPerPage to set
- */
- public void setRecordCountPerPage(int recordCountPerPage) {
- this.recordCountPerPage = recordCountPerPage;
- }
-
- /**
- * rowNo attribute를 리턴한다.
- *
- * @return the rowNo
- */
- public int getRowNo() {
- return rowNo;
- }
-
- /**
- * rowNo attribute 값을 설정한다.
- *
- * @param rowNo
- * the rowNo to set
- */
- public void setRowNo(int rowNo) {
- this.rowNo = rowNo;
- }
-
- /**
- * trgetId attribute를 리턴한다.
- *
- * @return the trgetId
- */
- public String getTrgetId() {
- return trgetId;
- }
-
- /**
- * trgetId attribute 값을 설정한다.
- *
- * @param trgetId
- * the trgetId to set
- */
- public void setTrgetId(String trgetId) {
- this.trgetId = trgetId;
- }
-
- /**
- * useAt attribute를 리턴한다.
- *
- * @return the useAt
- */
- public String getUseAt() {
- return useAt;
- }
-
- /**
- * useAt attribute 값을 설정한다.
- *
- * @param useAt
- * the useAt to set
- */
- public void setUseAt(String useAt) {
- this.useAt = useAt;
- }
-
- /**
- * cmmntyId attribute를 리턴한다.
- *
- * @return the cmmntyId
- */
- public String getCmmntyId() {
- return cmmntyId;
- }
-
- /**
- * cmmntyId attribute 값을 설정한다.
- *
- * @param cmmntyId
- * the cmmntyId to set
- */
- public void setCmmntyId(String cmmntyId) {
- this.cmmntyId = cmmntyId;
- }
-
- /**
- * clubId attribute를 리턴한다.
- *
- * @return the clubId
- */
- public String getClubId() {
- return clubId;
- }
-
- /**
- * clubId attribute 값을 설정한다.
- *
- * @param clubId
- * the clubId to set
- */
- public void setClubId(String clubId) {
- this.clubId = clubId;
- }
-
- /**
- * deletedAt attribute를 리턴한다.
- *
- * @return the deletedAt
- */
- public String getDeletedAt() {
- return deletedAt;
- }
-
- /**
- * deletedAt attribute 값을 설정한다.
- *
- * @param deletedAt
- * the deletedAt to set
- */
- public void setDeletedAt(String deletedAt) {
- this.deletedAt = deletedAt;
- }
-
- /**
- * toString 메소드를 대치한다.
- */
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/BBSUseInfoManageDAO.java b/src/main/java/itn/let/cop/com/service/impl/BBSUseInfoManageDAO.java
deleted file mode 100644
index 20c0676..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/BBSUseInfoManageDAO.java
+++ /dev/null
@@ -1,179 +0,0 @@
-package itn.let.cop.com.service.impl;
-
-import java.util.List;
-
-import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
-import itn.let.cop.com.service.BoardUseInf;
-import itn.let.cop.com.service.BoardUseInfVO;
-
-import org.springframework.stereotype.Repository;
-
-/**
- * 게시판 이용정보를 관리하기 위한 데이터 접근 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.02
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.02 이삼섭 최초 생성
- * 2011.05.31 JJY 경량환경 커스터마이징버전 생성
- *
- *
- */
-@Repository("BBSUseInfoManageDAO")
-public class BBSUseInfoManageDAO extends EgovAbstractDAO {
-
- /**
- * 게시판 사용 정보를 삭제한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void deleteBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- update("BBSUseInfoManageDAO.deleteBBSUseInf", bdUseInf);
- }
-
- /**
- * 커뮤니티에 사용되는 게시판 사용정보 목록을 조회한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectBBSUseInfByCmmnty(BoardUseInfVO bdUseVO) throws Exception {
- return (List) list("BBSUseInfoManageDAO.selectBBSUseInfByCmmnty", bdUseVO);
- }
-
- /**
- * 동호회에 사용되는 게시판 사용정보 목록을 조회한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectBBSUseInfByClub(BoardUseInfVO bdUseVO) throws Exception {
- return (List) list("BBSUseInfoManageDAO.selectBBSUseInfByClub", bdUseVO);
- }
-
- /**
- * 커뮤니티에 사용되는 모든 게시판 사용정보를 삭제한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void deleteAllBBSUseInfByCmmnty(BoardUseInfVO bdUseVO) throws Exception {
- update("BBSUseInfoManageDAO.deleteAllBBSUseInfByCmmnty", bdUseVO);
- }
-
- /**
- * 동호회에 사용되는 모든 게시판 사용정보를 삭제한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void deleteAllBBSUseInfByClub(BoardUseInfVO bdUseVO) throws Exception {
- update("BBSUseInfoManageDAO.deleteAllBBSUseInfByClub", bdUseVO);
- }
-
- /**
- * 게시판 사용정보를 등록한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void insertBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- insert("BBSUseInfoManageDAO.insertBBSUseInf", bdUseInf);
- }
-
- /**
- * 게시판 사용정보 목록을 조회한다.
- *
- * @param bdUseVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectBBSUseInfs(BoardUseInfVO bdUseVO) throws Exception {
- return (List) list("BBSUseInfoManageDAO.selectBBSUseInfs", bdUseVO);
- }
-
- /**
- *
- * @param bdUseVO
- * @return
- * @throws Exception
- */
- public int selectBBSUseInfsCnt(BoardUseInfVO bdUseVO) throws Exception {
- return (Integer)select("BBSUseInfoManageDAO.selectBBSUseInfsCnt", bdUseVO);
- }
-
- /**
- * 게시판 사용정보에 대한 상세정보를 조회한다.
- *
- * @param bdUseVO
- * @return
- * @throws Exception
- */
- public BoardUseInfVO selectBBSUseInf(BoardUseInfVO bdUseVO) throws Exception {
- return (BoardUseInfVO)select("BBSUseInfoManageDAO.selectBBSUseInf", bdUseVO);
- }
-
- /**
- * 게시판 사용정보를 수정한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void updateBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- update("BBSUseInfoManageDAO.updateBBSUseInf", bdUseInf);
- }
-
- /**
- * 사용
- * 게시판에 대한 사용정보를 삭제한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void deleteBBSUseInfByBoardId(BoardUseInf bdUseInf) throws Exception {
- update("BBSUseInfoManageDAO.deleteBBSUseInfByBoardId", bdUseInf);
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보에 대한 목록을 조회한다.
- *
- * @param bdUseVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectBBSUseInfsByTrget(BoardUseInfVO bdUseVO) throws Exception {
- return (List) list("BBSUseInfoManageDAO.selectBBSUseInfsByTrget", bdUseVO);
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보에 대한 전체 건수를 조회한다.
- *
- * @param bdUseVO
- * @return
- * @throws Exception
- */
- public int selectBBSUseInfsCntByTrget(BoardUseInfVO bdUseVO) throws Exception {
- return (Integer)select("BBSUseInfoManageDAO.selectBBSUseInfsCntByTrget", bdUseVO);
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보를 수정한다.
- *
- * @param bdUseInf
- * @throws Exception
- */
- public void updateBBSUseInfByTrget(BoardUseInf bdUseInf) throws Exception {
- update("BBSUseInfoManageDAO.updateBBSUseInfByTrget", bdUseInf);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/EgovBBSUseInfoManageServiceImpl.java b/src/main/java/itn/let/cop/com/service/impl/EgovBBSUseInfoManageServiceImpl.java
deleted file mode 100644
index fac0697..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/EgovBBSUseInfoManageServiceImpl.java
+++ /dev/null
@@ -1,187 +0,0 @@
-package itn.let.cop.com.service.impl;
-
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-
-import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
-import itn.let.cop.com.service.BoardUseInf;
-import itn.let.cop.com.service.BoardUseInfVO;
-import itn.let.cop.com.service.EgovBBSUseInfoManageService;
-
-import javax.annotation.Resource;
-
-import org.springframework.stereotype.Service;
-
-/**
- * 게시판 이용정보를 관리하기 위한 서비스 구현 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.02
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.02 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Service("EgovBBSUseInfoManageService")
-public class EgovBBSUseInfoManageServiceImpl extends EgovAbstractServiceImpl implements EgovBBSUseInfoManageService {
-
- @Resource(name = "BBSUseInfoManageDAO")
- private BBSUseInfoManageDAO bbsUseDAO;
-
- /**
- * 게시판 사용 정보를 삭제한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovBBSUseInfoManageService#deleteBBSUseInf(itn.let.cop.bbs.com.service.BoardUseInf)
- */
- public void deleteBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- bbsUseDAO.deleteBBSUseInf(bdUseInf);
- }
-
- /**
- * 게시판 사용정보를 등록한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovBBSUseInfoManageService#insertBBSUseInf(itn.let.cop.bbs.com.service.BoardUseInf)
- */
- public void insertBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- bbsUseDAO.insertBBSUseInf(bdUseInf);
- }
-
- /**
- * 게시판 사용정보 목록을 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovBBSUseInfoManageService#selectBBSUseInfs(itn.let.cop.bbs.com.service.BoardUseInfVO)
- */
- public Map selectBBSUseInfs(BoardUseInfVO bdUseVO) throws Exception {
-
- List result = bbsUseDAO.selectBBSUseInfs(bdUseVO);
- int cnt = bbsUseDAO.selectBBSUseInfsCnt(bdUseVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 게시판 사용정보를 수정한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovBBSUseInfoManageService#updateBBSUseInf(itn.let.cop.bbs.com.service.BoardUseInf)
- */
- public void updateBBSUseInf(BoardUseInf bdUseInf) throws Exception {
- bbsUseDAO.updateBBSUseInf(bdUseInf);
- }
-
- /**
- * 게시판 사용정보에 대한 상세정보를 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovBBSUseInfoManageService#selectBBSUseInf(itn.let.cop.bbs.com.service.BoardUseInfVO)
- */
- public BoardUseInfVO selectBBSUseInf(BoardUseInfVO bdUseVO) throws Exception {
- return bbsUseDAO.selectBBSUseInf(bdUseVO);
- }
-
- /**
- * 동호회에 사용되는 게시판 사용정보를 삭제한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#deleteBBSUseInfByClub(itn.let.cop.com.service.BoardUseInf)
- */
- public void deleteBBSUseInfByClub(BoardUseInfVO bdUseVO) throws Exception {
- List result = bbsUseDAO.selectBBSUseInfByClub(bdUseVO);
-
- BoardUseInf bdUseInf = null;
- Iterator iter = result.iterator();
- while (iter.hasNext()) {
- bdUseInf = (BoardUseInf)iter.next();
-
- bdUseInf.setLastUpdusrId(bdUseVO.getLastUpdusrId());
- //bdUseInf.setTrgetId(bdUseVO.getClbId()); // 사용자 ID를 넘겨야 함..
- bdUseInf.setTrgetId(bdUseVO.getTrgetId());
-
- bbsUseDAO.deleteBBSUseInf(bdUseInf);
- }
- }
-
- /**
- * 커뮤니티에 사용되는 게시판 사용정보를 삭제한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#deleteBBSUseInfByCmmnty(itn.let.cop.com.service.BoardUseInf)
- */
- public void deleteBBSUseInfByCmmnty(BoardUseInfVO bdUseVO) throws Exception {
- List result = bbsUseDAO.selectBBSUseInfByCmmnty(bdUseVO);
-
- BoardUseInf bdUseInf = null;
- Iterator iter = result.iterator();
-
- while (iter.hasNext()) {
- bdUseInf = (BoardUseInf)iter.next();
-
- bdUseInf.setLastUpdusrId(bdUseVO.getLastUpdusrId());
- //bdUseInf.setTrgetId(bdUseVO.getCmmntyId()); // 사용자 ID를 넘겨야 함..
- bdUseInf.setTrgetId(bdUseVO.getTrgetId());
-
- bbsUseDAO.deleteBBSUseInf(bdUseInf);
- }
- }
-
- /**
- * 동호회에 사용되는 모든 게시판 사용정보를 삭제한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#deleteAllBBSUseInfByClub(itn.let.cop.com.service.BoardUseInfVO)
- */
- public void deleteAllBBSUseInfByClub(BoardUseInfVO bdUseVO) throws Exception {
- bbsUseDAO.deleteAllBBSUseInfByClub(bdUseVO);
- }
-
- /**
- * 커뮤니티에 사용되는 모든 게시판 사용정보를 삭제한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#deleteAllBBSUseInfByCmmnty(itn.let.cop.com.service.BoardUseInfVO)
- */
- public void deleteAllBBSUseInfByCmmnty(BoardUseInfVO bdUseVO) throws Exception {
- bbsUseDAO.deleteAllBBSUseInfByCmmnty(bdUseVO);
- }
-
- /**
- * 게시판에 대한 사용정보를 삭제한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#deleteBBSUseInfByBoardId(itn.let.cop.com.service.BoardUseInf)
- */
- public void deleteBBSUseInfByBoardId(BoardUseInf bdUseInf) throws Exception {
- bbsUseDAO.deleteBBSUseInfByBoardId(bdUseInf);
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보에 대한 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovBBSUseInfoManageService#selectBBSUseInfsByTrget(itn.let.cop.com.service.BoardUseInfVO)
- */
- public Map selectBBSUseInfsByTrget(BoardUseInfVO bdUseVO) throws Exception {
- List result = bbsUseDAO.selectBBSUseInfsByTrget(bdUseVO);
- int cnt = bbsUseDAO.selectBBSUseInfsCntByTrget(bdUseVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보를 수정한다.
- */
- public void updateBBSUseInfByTrget(BoardUseInf bdUseInf) throws Exception {
- bbsUseDAO.updateBBSUseInfByTrget(bdUseInf);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/EgovTemplateManageServiceImpl.java b/src/main/java/itn/let/cop/com/service/impl/EgovTemplateManageServiceImpl.java
deleted file mode 100644
index b02be0c..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/EgovTemplateManageServiceImpl.java
+++ /dev/null
@@ -1,121 +0,0 @@
-package itn.let.cop.com.service.impl;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
-import egovframework.rte.fdl.idgnr.EgovIdGnrService;
-import itn.let.cop.com.service.EgovTemplateManageService;
-import itn.let.cop.com.service.TemplateInf;
-import itn.let.cop.com.service.TemplateInfVO;
-
-import javax.annotation.Resource;
-
-import org.springframework.stereotype.Service;
-
-/**
- * 템플릿 정보관리를 위한 서비스 구현 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.3.17
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.3.17 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Service("EgovTemplateManageService")
-public class EgovTemplateManageServiceImpl extends EgovAbstractServiceImpl implements EgovTemplateManageService {
-
- @Resource(name = "TemplateManageDAO")
- private TemplateManageDAO tmplatDAO;
-
- @Resource(name = "egovTmplatIdGnrService")
- private EgovIdGnrService idgenService;
-
- /**
- * 템플릿 정보를 삭제한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#deleteTemplateInf(itn.let.cop.bbs.com.service.TemplateInf)
- */
- public void deleteTemplateInf(TemplateInf tmplatInf) throws Exception {
- tmplatDAO.deleteTemplateInf(tmplatInf);
- }
-
- /**
- * 템플릿 정보를 등록한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#insertTemplateInf(itn.let.cop.bbs.com.service.TemplateInf)
- */
- public void insertTemplateInf(TemplateInf tmplatInf) throws Exception {
-
- tmplatInf.setTmplatId(idgenService.getNextStringId());
-
- tmplatDAO.insertTemplateInf(tmplatInf);
- }
-
- /**
- * 템플릿에 대한 상세정보를 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#selectTemplateInf(itn.let.cop.bbs.com.service.TemplateInfVO)
- */
- public TemplateInfVO selectTemplateInf(TemplateInfVO tmplatInfVO) throws Exception {
- TemplateInfVO vo = new TemplateInfVO();
- vo = tmplatDAO.selectTemplateInf(tmplatInfVO);
- return vo;
- }
-
- /**
- * 템플릿에 대한 목록를 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#selectTemplateInfs(itn.let.cop.bbs.com.service.TemplateInfVO)
- */
- public Map selectTemplateInfs(TemplateInfVO tmplatInfVO) throws Exception {
- List result = tmplatDAO.selectTemplateInfs(tmplatInfVO);
- int cnt = tmplatDAO.selectTemplateInfsCnt(tmplatInfVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 템플릿에 대한 미리보기 정보를 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#selectTemplatePreview(itn.let.cop.bbs.com.service.TemplateInfVO)
- */
- public TemplateInfVO selectTemplatePreview(TemplateInfVO tmplatInfVO) throws Exception {
- TemplateInfVO vo = new TemplateInfVO();
-
- vo = tmplatDAO.selectTemplatePreview(tmplatInfVO);
-
- return vo;
- }
-
- /**
- * 템플릿 정보를 수정한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#updateTemplateInf(itn.let.cop.bbs.com.service.TemplateInf)
- */
- public void updateTemplateInf(TemplateInf tmplatInf) throws Exception {
- tmplatDAO.updateTemplateInf(tmplatInf);
- }
-
- /**
- * 템플릿 구분에 따른 목록을 조회한다.
- *
- * @see itn.let.cop.bbs.com.service.EgovTemplateManageService#selectAllTemplateInfs(itn.let.cop.bbs.com.service.TemplateInfVO)
- */
- public List selectTemplateInfsByCode(TemplateInfVO tmplatInfVO) throws Exception {
- return tmplatDAO.selectTemplateInfsByCode(tmplatInfVO);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageDAO.java b/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageDAO.java
deleted file mode 100644
index f249a01..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageDAO.java
+++ /dev/null
@@ -1,168 +0,0 @@
-package itn.let.cop.com.service.impl;
-
-import java.util.List;
-
-import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
-import itn.let.cop.com.service.UserInfVO;
-
-import org.springframework.stereotype.Repository;
-
-/**
- * 협업 활용 사용자 정보 조회를 위한 데이터 접근 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.06
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.06 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Repository("EgovUserInfManageDAO")
-public class EgovUserInfManageDAO extends EgovAbstractDAO {
-
- /**
- * 사용자 정보에 대한 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectUserList(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectUserList", userVO);
- }
-
- /**
- * 사용자 정보에 대한 목록 전체 건수를 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- public int selectUserListCnt(UserInfVO userVO) throws Exception {
- return (Integer)select("EgovUserInfManageDAO.selectUserListCnt", userVO);
- }
-
- /**
- * 커뮤니티 사용자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectCmmntyUserList(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectCmmntyUserList", userVO);
- }
-
- /**
- * 커뮤니티 사용자 목록에 대한 전체 건수를 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- public int selectCmmntyUserListCnt(UserInfVO userVO) throws Exception {
- return (Integer)select("EgovUserInfManageDAO.selectCmmntyUserListCnt", userVO);
- }
-
- /**
- * 커뮤니티 관리자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectCmmntyMngrList(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectCmmntyMngrList", userVO);
- }
-
- /**
- * 커뮤니티 관리자 목록에 대한 전체 건수를 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- public int selectCmmntyMngrListCnt(UserInfVO userVO) throws Exception {
- return (Integer)select("EgovUserInfManageDAO.selectCmmntyMngrListCnt", userVO);
- }
-
- /**
- * 동호회 사용자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectClubUserList(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectClubUserList", userVO);
- }
-
- /**
- * 동호회 사용자 목록에 대한 전체 건수를 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- public int selectClubUserListCnt(UserInfVO userVO) throws Exception {
- return (Integer)select("EgovUserInfManageDAO.selectClubUserListCnt", userVO);
- }
-
- /**
- * 동호회 운영자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectClubOprtrList(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectClubOprtrList", userVO);
- }
-
- /**
- * 동호회 운영자 목록에 대한 전체 건수를 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- public int selectClubOprtrListCnt(UserInfVO userVO) throws Exception {
- return (Integer)select("EgovUserInfManageDAO.selectClubOprtrListCnt", userVO);
- }
-
- /**
- * 동호회에 대한 모든 사용자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectAllClubUser(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectAllClubUser", userVO);
- }
-
- /**
- * 커뮤니티에 대한 모든 사용자 목록을 조회한다.
- *
- * @param userVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectAllCmmntyUser(UserInfVO userVO) throws Exception {
- return (List) list("EgovUserInfManageDAO.selectAllCmmntyUser", userVO);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageServiceImpl.java b/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageServiceImpl.java
deleted file mode 100644
index 7418e8e..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/EgovUserInfManageServiceImpl.java
+++ /dev/null
@@ -1,141 +0,0 @@
-package itn.let.cop.com.service.impl;
-
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
-import itn.let.cop.com.service.EgovUserInfManageService;
-import itn.let.cop.com.service.UserInfVO;
-
-import javax.annotation.Resource;
-
-import org.springframework.stereotype.Service;
-
-
-/**
- * 협업에서 사용할 사용자 조회 서비스 기능 구현 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.06
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.06 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Service("EgovUserInfManageService")
-public class EgovUserInfManageServiceImpl extends EgovAbstractServiceImpl implements EgovUserInfManageService {
-
- @Resource(name = "EgovUserInfManageDAO")
- private EgovUserInfManageDAO userInfDAO;
-
- /**
- * 동호회 운영자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectClubOprtrList(itn.let.cop.com.service.UserInfVO)
- */
- public Map selectClubOprtrList(UserInfVO userVO) throws Exception {
- List result = userInfDAO.selectClubOprtrList(userVO);
- int cnt = userInfDAO.selectClubOprtrListCnt(userVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 동호회 사용자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectClubUserList(itn.let.cop.com.service.UserInfVO)
- */
- public Map selectClubUserList(UserInfVO userVO) throws Exception {
- List result = userInfDAO.selectClubUserList(userVO);
- int cnt = userInfDAO.selectClubUserListCnt(userVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 커뮤니티 관리자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectCmmntyMngrList(itn.let.cop.com.service.UserInfVO)
- */
- public Map selectCmmntyMngrList(UserInfVO userVO) throws Exception {
- List result = userInfDAO.selectCmmntyMngrList(userVO);
- int cnt = userInfDAO.selectCmmntyMngrListCnt(userVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 커뮤니티 사용자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectCmmntyUserList(itn.let.cop.com.service.UserInfVO)
- */
- public Map selectCmmntyUserList(UserInfVO userVO) throws Exception {
- List result = userInfDAO.selectCmmntyUserList(userVO);
- int cnt = userInfDAO.selectCmmntyUserListCnt(userVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 사용자 정보에 대한 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectUserList(itn.let.cop.com.service.UserInfVO)
- */
- public Map selectUserList(UserInfVO userVO) throws Exception {
- List result = userInfDAO.selectUserList(userVO);
- int cnt = userInfDAO.selectUserListCnt(userVO);
-
- Map map = new HashMap();
-
- map.put("resultList", result);
- map.put("resultCnt", Integer.toString(cnt));
-
- return map;
- }
-
- /**
- * 동호회에 대한 모든 사용자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectAllClubUser(itn.let.cop.com.service.UserInfVO)
- */
- public List selectAllClubUser(UserInfVO userVO) throws Exception {
- return userInfDAO.selectAllClubUser(userVO);
- }
-
- /**
- * 커뮤니티에 대한 모든 사용자 목록을 조회한다.
- *
- * @see itn.let.cop.com.service.EgovUserInfManageService#selectAllCmmntyUser(itn.let.cop.com.service.UserInfVO)
- */
- public List selectAllCmmntyUser(UserInfVO userVO) throws Exception {
- return userInfDAO.selectAllCmmntyUser(userVO);
- }
-}
diff --git a/src/main/java/itn/let/cop/com/service/impl/TemplateManageDAO.java b/src/main/java/itn/let/cop/com/service/impl/TemplateManageDAO.java
deleted file mode 100644
index 929dcec..0000000
--- a/src/main/java/itn/let/cop/com/service/impl/TemplateManageDAO.java
+++ /dev/null
@@ -1,118 +0,0 @@
-package itn.let.cop.com.service.impl;
-import java.util.List;
-
-import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
-import itn.let.cop.com.service.TemplateInf;
-import itn.let.cop.com.service.TemplateInfVO;
-
-import org.springframework.stereotype.Repository;
-
-/**
- * 템플릿 정보관리를 위한 데이터 접근 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.03.17
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.03.17 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Repository("TemplateManageDAO")
-public class TemplateManageDAO extends EgovAbstractDAO {
-
- /**
- * 템플릿 정보를 삭제한다.
- *
- * @param tmplatInf
- * @throws Exception
- */
- public void deleteTemplateInf(TemplateInf tmplatInf) throws Exception {
- update("TemplateManageDAO.deleteTemplateInf", tmplatInf);
- }
-
- /**
- * 템플릿 정보를 등록한다.
- *
- * @param tmplatInf
- * @throws Exception
- */
- public void insertTemplateInf(TemplateInf tmplatInf) throws Exception {
- insert("TemplateManageDAO.insertTemplateInf", tmplatInf);
- }
-
- /**
- * 템플릿 정보를 수정한다.
- *
- * @param tmplatInf
- * @throws Exception
- */
- public void updateTemplateInf(TemplateInf tmplatInf) throws Exception {
- update("TemplateManageDAO.updateTemplateInf", tmplatInf);
- }
-
- /**
- * 템플릿에 대한 목록를 조회한다.
- *
- * @param tmplatInfVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectTemplateInfs(TemplateInfVO tmplatInfVO) throws Exception {
- return (List) list("TemplateManageDAO.selectTemplateInfs", tmplatInfVO);
- }
-
- /**
- * 템플릿에 대한 목록 전체 건수를 조회한다.
- *
- * @param tmplatInfVO
- * @return
- * @throws Exception
- */
- public int selectTemplateInfsCnt(TemplateInfVO tmplatInfVO) throws Exception {
- return (Integer)select("TemplateManageDAO.selectTemplateInfsCnt", tmplatInfVO);
- }
-
- /**
- * 템플릿에 대한 상세정보를 조회한다.
- *
- * @param tmplatInfVO
- * @return
- * @throws Exception
- */
- public TemplateInfVO selectTemplateInf(TemplateInfVO tmplatInfVO) throws Exception {
- return (TemplateInfVO)select("TemplateManageDAO.selectTemplateInf", tmplatInfVO);
-
- }
-
- /**
- * 템플릿에 대한 미리보기 정보를 조회한다.
- *
- * @param tmplatInfVO
- * @return
- * @throws Exception
- */
- public TemplateInfVO selectTemplatePreview(TemplateInfVO tmplatInfVO) throws Exception {
- return null;
- }
-
- /**
- * 템플릿 구분에 따른 목록을 조회한다.
- *
- * @param tmplatInfVO
- * @return
- * @throws Exception
- */
- @SuppressWarnings("unchecked")
- public List selectTemplateInfsByCode(TemplateInfVO tmplatInfVO) throws Exception {
- return (List) list("TemplateManageDAO.selectTemplateInfsByCode", tmplatInfVO);
- }
-
-}
diff --git a/src/main/java/itn/let/cop/com/web/EgovBBSUseInfoManageController.java b/src/main/java/itn/let/cop/com/web/EgovBBSUseInfoManageController.java
deleted file mode 100644
index 6cd7404..0000000
--- a/src/main/java/itn/let/cop/com/web/EgovBBSUseInfoManageController.java
+++ /dev/null
@@ -1,375 +0,0 @@
-package itn.let.cop.com.web;
-
-import java.util.Map;
-
-import egovframework.rte.fdl.property.EgovPropertyService;
-import egovframework.rte.fdl.security.userdetails.util.EgovUserDetailsHelper;
-import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
-import itn.com.cmm.LoginVO;
-import itn.let.cop.com.service.BoardUseInf;
-import itn.let.cop.com.service.BoardUseInfVO;
-import itn.let.cop.com.service.EgovBBSUseInfoManageService;
-
-import javax.annotation.Resource;
-import javax.servlet.http.HttpServletRequest;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Controller;
-import org.springframework.ui.ModelMap;
-import org.springframework.validation.BindingResult;
-import org.springframework.web.bind.annotation.ModelAttribute;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.support.SessionStatus;
-import org.springmodules.validation.commons.DefaultBeanValidator;
-//SHT-CUSTOMIZING//import itn.let.cop.clb.service.ClubUser;
-//SHT-CUSTOMIZING//import itn.let.cop.clb.service.EgovClubManageService;
-//SHT-CUSTOMIZING//import itn.let.cop.cmy.service.CommunityUser;
-//SHT-CUSTOMIZING//import itn.let.cop.cmy.service.EgovCommunityManageService;
-//import egovframework.rte.fdl.cmmn.exception.EgovBizException;
-
-/**
- * 게시판의 이용정보를 관리하기 위한 컨트롤러 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.04.02
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.04.02 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Controller
-public class EgovBBSUseInfoManageController {
-
- @Resource(name = "EgovBBSUseInfoManageService")
- private EgovBBSUseInfoManageService bbsUseService;
-
- @Resource(name = "propertiesService")
- protected EgovPropertyService propertyService;
-
- //SHT-CUSTOMIZING//@Resource(name = "EgovCommunityManageService")
- //SHT-CUSTOMIZING//private EgovCommunityManageService cmmntyService; // 커뮤니티 관리자 권한 확인
-
- //SHT-CUSTOMIZING//@Resource(name = "EgovClubManageService")
- //SHT-CUSTOMIZING//private EgovClubManageService clubService; // 동호회 운영자 권한 확인
-
- @Autowired
- private DefaultBeanValidator beanValidator;
-
- /**
- * 커뮤니티 관리자 및 동호회 운영자 권한을 확인한다.
- *
- * @param boardUseInf
- * @throws EgovBizException
- */
- //SHT-CUSTOMIZING//protected void checkAuthority(BoardUseInf boardUseInf) throws Exception {
- //SHT-CUSTOMIZING//String targetId = boardUseInf.getTrgetId();
-
- //SHT-CUSTOMIZING//LoginVO user = (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser();
-
- //SHT-CUSTOMIZING//if (user == null) {
- //SHT-CUSTOMIZING//throw new EgovBizException("인증된 사용자 정보가 존재하지 않습니다.");
- //SHT-CUSTOMIZING//}
-
- //SHT-CUSTOMIZING//if (targetId.startsWith("CMMNTY_")) {
- //SHT-CUSTOMIZING//CommunityUser cmmntyUser = new CommunityUser();
-
- //SHT-CUSTOMIZING//cmmntyUser.setCmmntyId(boardUseInf.getTrgetId());
- //SHT-CUSTOMIZING//cmmntyUser.setEmplyrId(user.getUniqId());
-
- //SHT-CUSTOMIZING//if (!cmmntyService.isManager(cmmntyUser)) {
- //SHT-CUSTOMIZING//throw new EgovBizException("해당 커뮤니티 관리자만 사용하실 수 있습니다.");
- //SHT-CUSTOMIZING//}
- //SHT-CUSTOMIZING//} else if (targetId.startsWith("CLB_")) {
- //SHT-CUSTOMIZING//ClubUser clubUser = new ClubUser();
-
- //SHT-CUSTOMIZING//clubUser.setClbId(boardUseInf.getTrgetId());
- //SHT-CUSTOMIZING//clubUser.setEmplyrId(user.getUniqId());
-
- //SHT-CUSTOMIZING//if (!clubService.isOperator(clubUser)) {
- //SHT-CUSTOMIZING//throw new EgovBizException("해당 동호회 운영자만 사용하실 수 있습니다.");
- //SHT-CUSTOMIZING//}
- //SHT-CUSTOMIZING//} else {
- //SHT-CUSTOMIZING//throw new EgovBizException("대상ID 정보가 정확하지 않습니다.");
- //SHT-CUSTOMIZING//}
- //SHT-CUSTOMIZING//}
-
- /**
- * 게시판 사용 정보를 삭제한다.
- *
- * @param bdUseVO
- * @param bdUseInf
- * @param sessionVO
- * @param status
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/deleteBBSUseInf.do")
- public String deleteBBSUseInf(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, @ModelAttribute("bdUseInf") BoardUseInf bdUseInf, SessionStatus status, ModelMap model)
- throws Exception {
-
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- if (isAuthenticated) {
- bbsUseService.deleteBBSUseInf(bdUseInf);
- }
-
- return "forward:/cop/com/selectBBSUseInfs.do";
- }
-
- /**
- * 게사판 사용정보 등록을 위한 등록페이지로 이동한다.
- *
- * @param bdUseVO
- * @param sessionVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/addBBSUseInf.do")
- public String addBBSUseInf(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, ModelMap model) throws Exception {
- return "cop/com/EgovBoardUseInfRegist";
- }
-
- /**
- * 게시판 사용정보를 등록한다.
- *
- * @param bdUseVO
- * @param bdUseInf
- * @param sessionVO
- * @param status
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/insertBBSUseInf.do")
- public String insertBBSUseInf(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, @ModelAttribute("boardUseInf") BoardUseInf boardUseInf, BindingResult bindingResult,
- @RequestParam Map commandMap, ModelMap model) throws Exception {
-
- LoginVO user = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- beanValidator.validate(boardUseInf, bindingResult);
-
- if (bindingResult.hasErrors()) {
- return "cop/com/EgovBoardUseInfRegist";
- }
-
- String trgetType = (String) commandMap.get("param_trgetType");
- String registSeCode = "";
-
- // CMMNTY 06/CLUB 05/SYSTEM(REGC01)
- if ("CMMNTY".equals(trgetType)) {
- registSeCode = "REGC06";
- } else if ("CLUB".equals(trgetType)) {
- registSeCode = "REGC05";
- } else {
- registSeCode = "REGC01";
- }
-
- boardUseInf.setUseAt("Y");
- boardUseInf.setFrstRegisterId(user.getUniqId());
- boardUseInf.setRegistSeCode(registSeCode);
-
- if (isAuthenticated) {
- bbsUseService.insertBBSUseInf(boardUseInf);
- }
-
- return "forward:/cop/com/selectBBSUseInfs.do";
- }
-
- /**
- * 게시판 사용정보 목록을 조회한다.
- *
- * @param bdUseVO
- * @param sessionVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectBBSUseInfs.do")
- public String selectBBSUseInfs(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, ModelMap model) throws Exception {
-
- bdUseVO.setPageUnit(propertyService.getInt("pageUnit"));
- bdUseVO.setPageSize(propertyService.getInt("pageSize"));
-
- PaginationInfo paginationInfo = new PaginationInfo();
-
- paginationInfo.setCurrentPageNo(bdUseVO.getPageIndex());
- paginationInfo.setRecordCountPerPage(bdUseVO.getPageUnit());
- paginationInfo.setPageSize(bdUseVO.getPageSize());
-
- bdUseVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
- bdUseVO.setLastIndex(paginationInfo.getLastRecordIndex());
- bdUseVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
-
- Map map = bbsUseService.selectBBSUseInfs(bdUseVO);
- int totCnt = Integer.parseInt((String) map.get("resultCnt"));
-
- paginationInfo.setTotalRecordCount(totCnt);
-
- model.addAttribute("resultList", map.get("resultList"));
- model.addAttribute("resultCnt", map.get("resultCnt"));
- model.addAttribute("paginationInfo", paginationInfo);
-
- return "cop/com/EgovBoardUseInfList";
- }
-
- /**
- * 게시판 사용정보를 수정한다.
- *
- * @param bdUseVO
- * @param bdUseInf
- * @param sessionVO
- * @param status
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/updateBBSUseInf.do")
- public String updateBBSUseInf(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, @ModelAttribute("boardUseInf") BoardUseInf boardUseInf, HttpServletRequest request,
- ModelMap model) throws Exception {
- if (EgovUserDetailsHelper.isAuthenticated()) {
- bbsUseService.updateBBSUseInf(boardUseInf);
- }
-
- return "forward:/cop/com/selectBBSUseInfs.do";
- }
-
- /**
- * 게시판 사용정보에 대한 상세정보를 조회한다.
- *
- * @param bdUseVO
- * @param sessionVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectBBSUseInf.do")
- public String selectBBSUseInf(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, ModelMap model) throws Exception {
- BoardUseInfVO vo = bbsUseService.selectBBSUseInf(bdUseVO);
-
- // 시스템 사용 게시판의 경우 URL 표시
- if ("SYSTEM_DEFAULT_BOARD".equals(vo.getTrgetId())) {
- if (vo.getBbsTyCode().equals("BBST02")) { // 익명게시판
- vo.setProvdUrl("/cop/bbs/anonymous/selectBoardList.do?bbsId=" + vo.getBbsId());
- } else {
- vo.setProvdUrl("/cop/bbs/selectBoardList.do?bbsId=" + vo.getBbsId());
- }
- }
-
- model.addAttribute("bdUseVO", vo);
- return "cop/com/EgovBoardUseInfInqire";
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보에 대한 목록을 조회한다.
- *
- * @param bdUseVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectBBSUseInfsByTrget.do")
- public String selectBBSUseInfsByTrget(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, ModelMap model) throws Exception {
- //SHT-CUSTOMIZING//checkAuthority(bdUseVO); // server-side 권한 확인
-
- bdUseVO.setPageUnit(propertyService.getInt("pageUnit"));
- bdUseVO.setPageSize(propertyService.getInt("pageSize"));
-
- PaginationInfo paginationInfo = new PaginationInfo();
-
- paginationInfo.setCurrentPageNo(bdUseVO.getPageIndex());
- paginationInfo.setRecordCountPerPage(bdUseVO.getPageUnit());
- paginationInfo.setPageSize(bdUseVO.getPageSize());
-
- bdUseVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
- bdUseVO.setLastIndex(paginationInfo.getLastRecordIndex());
- bdUseVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
-
- Map map = bbsUseService.selectBBSUseInfsByTrget(bdUseVO);
- int totCnt = Integer.parseInt((String) map.get("resultCnt"));
-
- paginationInfo.setTotalRecordCount(totCnt);
-
- model.addAttribute("resultList", map.get("resultList"));
- model.addAttribute("resultCnt", map.get("resultCnt"));
- model.addAttribute("trgetId", bdUseVO.getTrgetId());
- model.addAttribute("trgetType", bdUseVO.getTrgetType());
- model.addAttribute("paginationInfo", paginationInfo);
-
- return "cop/com/EgovBdUseInfListByTrget";
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보를 수정한다.
- *
- * @param bdUseVO
- * @param boardUseInf
- * @param status
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/updateBBSUseInfByTrget.do")
- public String updateBBSUseInfByTrget(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, @ModelAttribute("boardUseInf") BoardUseInf boardUseInf,
- @RequestParam Map commandMap, SessionStatus status, ModelMap model) throws Exception {
-
- //SHT-CUSTOMIZING//checkAuthority(bdUseVO); // server-side 권한 확인
-
- String param_trgetId = (String) commandMap.get("param_trgetId");
-
- //LoginVO user = (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- if (isAuthenticated) {
- boardUseInf.setTrgetId(param_trgetId);
- bbsUseService.updateBBSUseInfByTrget(boardUseInf);
- }
-
- return "forward:/cop/com/selectBBSUseInfsByTrget.do";
- }
-
- /**
- * 커뮤니티, 동호회에 사용되는 게시판 사용정보를 등록한다.
- *
- * @param bdUseVO
- * @param boardUseInf
- * @param status
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/insertBBSUseInfByTrget.do")
- public String insertBBSUseInfByTrget(@ModelAttribute("searchVO") BoardUseInfVO bdUseVO, @ModelAttribute("boardUseInf") BoardUseInf boardUseInf,
- @RequestParam Map commandMap, SessionStatus status, ModelMap model) throws Exception {
-
- //SHT-CUSTOMIZING//checkAuthority(bdUseVO); // server-side 권한 확인
-
- String paramTrgetId = (String) commandMap.get("param_trgetId");
- String bbsId = (String) commandMap.get("bbsId");
-
- LoginVO user = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- if (isAuthenticated) {
- boardUseInf.setUseAt("Y");
- boardUseInf.setFrstRegisterId(user.getUniqId());
- boardUseInf.setRegistSeCode("REGC07");
- boardUseInf.setBbsId(bbsId);
- boardUseInf.setTrgetId(paramTrgetId);
-
- bbsUseService.insertBBSUseInf(boardUseInf);
- }
-
- return "forward:/cop/com/selectBBSUseInfsByTrget.do";
- }
-}
diff --git a/src/main/java/itn/let/cop/com/web/EgovTemplateManageController.java b/src/main/java/itn/let/cop/com/web/EgovTemplateManageController.java
deleted file mode 100644
index 19b27f5..0000000
--- a/src/main/java/itn/let/cop/com/web/EgovTemplateManageController.java
+++ /dev/null
@@ -1,334 +0,0 @@
-package itn.let.cop.com.web;
-
-import java.util.List;
-import java.util.Map;
-
-import egovframework.rte.fdl.property.EgovPropertyService;
-import egovframework.rte.fdl.security.userdetails.util.EgovUserDetailsHelper;
-import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
-import itn.com.cmm.ComDefaultCodeVO;
-import itn.com.cmm.LoginVO;
-import itn.com.cmm.service.EgovCmmUseService;
-import itn.let.cop.com.service.EgovTemplateManageService;
-import itn.let.cop.com.service.TemplateInf;
-import itn.let.cop.com.service.TemplateInfVO;
-
-import javax.annotation.Resource;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Controller;
-import org.springframework.ui.ModelMap;
-import org.springframework.validation.BindingResult;
-import org.springframework.web.bind.annotation.ModelAttribute;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.support.SessionStatus;
-import org.springmodules.validation.commons.DefaultBeanValidator;
-
-/**
- * 템플릿 관리를 위한 컨트롤러 클래스
- * @author 공통서비스개발팀 이삼섭
- * @since 2009.03.18
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2009.03.18 이삼섭 최초 생성
- * 2011.08.31 JJY 경량환경 템플릿 커스터마이징버전 생성
- *
- *
- */
-@Controller
-public class EgovTemplateManageController {
-
- @Resource(name = "EgovTemplateManageService")
- private EgovTemplateManageService tmplatService;
-
- @Resource(name = "EgovCmmUseService")
- private EgovCmmUseService cmmUseService;
-
- @Resource(name = "propertiesService")
- protected EgovPropertyService propertyService;
-
- @Autowired
- private DefaultBeanValidator beanValidator;
-
- /**
- * 템플릿 목록을 조회한다.
- *
- * @param searchVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectTemplateInfs.do")
- public String selectTemplateInfs(@ModelAttribute("searchVO") TemplateInfVO tmplatInfVO, ModelMap model) throws Exception {
- tmplatInfVO.setPageUnit(propertyService.getInt("pageUnit"));
- tmplatInfVO.setPageSize(propertyService.getInt("pageSize"));
-
- PaginationInfo paginationInfo = new PaginationInfo();
-
- paginationInfo.setCurrentPageNo(tmplatInfVO.getPageIndex());
- paginationInfo.setRecordCountPerPage(tmplatInfVO.getPageUnit());
- paginationInfo.setPageSize(tmplatInfVO.getPageSize());
-
- tmplatInfVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
- tmplatInfVO.setLastIndex(paginationInfo.getLastRecordIndex());
- tmplatInfVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
-
- Map map = tmplatService.selectTemplateInfs(tmplatInfVO);
- int totCnt = Integer.parseInt((String) map.get("resultCnt"));
-
- paginationInfo.setTotalRecordCount(totCnt);
-
- model.addAttribute("resultList", map.get("resultList"));
- model.addAttribute("resultCnt", map.get("resultCnt"));
- model.addAttribute("paginationInfo", paginationInfo);
-
- return "cop/com/EgovTemplateList";
- }
-
- /**
- * 템플릿에 대한 상세정보를 조회한다.
- *
- * @param searchVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectTemplateInf.do")
- public String selectTemplateInf(@ModelAttribute("searchVO") TemplateInfVO tmplatInfVO, ModelMap model) throws Exception {
-
- ComDefaultCodeVO codeVO = new ComDefaultCodeVO();
-
- codeVO.setCodeId("COM005");
- List> result = cmmUseService.selectCmmCodeDetail(codeVO);
-
- TemplateInfVO vo = tmplatService.selectTemplateInf(tmplatInfVO);
-
- model.addAttribute("TemplateInfVO", vo);
- model.addAttribute("resultList", result);
-
- return "cop/com/EgovTemplateUpdt";
- }
-
- /**
- * 템플릿 정보를 등록한다.
- *
- * @param searchVO
- * @param tmplatInfo
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/insertTemplateInf.do")
- public String insertTemplateInf(@ModelAttribute("searchVO") TemplateInfVO searchVO, @ModelAttribute("templateInf") TemplateInf templateInf, BindingResult bindingResult,
- SessionStatus status, ModelMap model) throws Exception {
-
- LoginVO user = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- beanValidator.validate(templateInf, bindingResult);
-
- if (bindingResult.hasErrors()) {
- ComDefaultCodeVO vo = new ComDefaultCodeVO();
-
- vo.setCodeId("COM005");
-
- List> result = cmmUseService.selectCmmCodeDetail(vo);
-
- model.addAttribute("resultList", result);
-
- return "cop/com/EgovTemplateRegist";
- }
-
- templateInf.setFrstRegisterId(user.getUniqId());
-
- if (isAuthenticated) {
- tmplatService.insertTemplateInf(templateInf);
- }
-
- return "forward:/cop/com/selectTemplateInfs.do";
- }
-
- /**
- * 템플릿 등록을 위한 등록페이지로 이동한다.
- *
- * @param searchVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/addTemplateInf.do")
- public String addTemplateInf(@ModelAttribute("searchVO") TemplateInfVO searchVO, ModelMap model) throws Exception {
- ComDefaultCodeVO vo = new ComDefaultCodeVO();
-
- vo.setCodeId("COM005");
-
- List> result = cmmUseService.selectCmmCodeDetail(vo);
-
- model.addAttribute("resultList", result);
-
- return "cop/com/EgovTemplateRegist";
- }
-
- /**
- * 템플릿 정보를 수정한다.
- *
- * @param searchVO
- * @param tmplatInfo
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/updateTemplateInf.do")
- public String updateTemplateInf(@ModelAttribute("searchVO") TemplateInfVO tmplatInfVO, @ModelAttribute("templateInf") TemplateInf templateInf, BindingResult bindingResult,
- SessionStatus status, ModelMap model) throws Exception {
-
- LoginVO user = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- beanValidator.validate(templateInf, bindingResult);
-
- if (bindingResult.hasErrors()) {
- ComDefaultCodeVO codeVO = new ComDefaultCodeVO();
-
- codeVO.setCodeId("COM005");
-
- List> result = cmmUseService.selectCmmCodeDetail(codeVO);
-
- TemplateInfVO vo = tmplatService.selectTemplateInf(tmplatInfVO);
-
- model.addAttribute("TemplateInfVO", vo);
- model.addAttribute("resultList", result);
-
- return "cop/com/EgovTemplateUpdt";
- }
-
- templateInf.setLastUpdusrId(user.getUniqId());
-
- if (isAuthenticated) {
- tmplatService.updateTemplateInf(templateInf);
- }
-
- return "forward:/cop/com/selectTemplateInfs.do";
- }
-
- /**
- * 템플릿 정보를 삭제한다.
- *
- * @param searchVO
- * @param tmplatInfo
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/bbs/deleteTemplateInf.do")
- public String deleteTemplateInf(@ModelAttribute("searchVO") TemplateInfVO searchVO, @ModelAttribute("tmplatInf") TemplateInf tmplatInf, SessionStatus status, ModelMap model)
- throws Exception {
-
- LoginVO user = (LoginVO) EgovUserDetailsHelper.getAuthenticatedUser();
- Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated();
-
- tmplatInf.setLastUpdusrId(user.getUniqId());
-
- if (isAuthenticated) {
- tmplatService.deleteTemplateInf(tmplatInf);
- }
-
- return "forward:/cop/com/selectTemplateInfs.do";
- }
-
- /**
- * 팝업을 위한 템플릿 목록을 조회한다.
- *
- * @param searchVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/selectTemplateInfsPop.do")
- public String selectTemplateInfsPop(@ModelAttribute("searchVO") TemplateInfVO tmplatInfVO, @RequestParam Map commandMap, ModelMap model) throws Exception {
-
- String typeFlag = (String) commandMap.get("typeFlag");
-
- if ("CLB".equals(typeFlag)) {
- tmplatInfVO.setTypeFlag(typeFlag);
- tmplatInfVO.setTmplatSeCode("TMPT03");
- } else if ("CMY".equals(typeFlag)) {
- tmplatInfVO.setTypeFlag(typeFlag);
- tmplatInfVO.setTmplatSeCode("TMPT02");
- } else {
- tmplatInfVO.setTypeFlag(typeFlag);
- tmplatInfVO.setTmplatSeCode("TMPT01");
- }
-
- tmplatInfVO.setPageUnit(propertyService.getInt("pageUnit"));
- tmplatInfVO.setPageSize(propertyService.getInt("pageSize"));
- //CMY, CLB
-
- PaginationInfo paginationInfo = new PaginationInfo();
-
- paginationInfo.setCurrentPageNo(tmplatInfVO.getPageIndex());
- paginationInfo.setRecordCountPerPage(tmplatInfVO.getPageUnit());
- paginationInfo.setPageSize(tmplatInfVO.getPageSize());
-
- tmplatInfVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
- tmplatInfVO.setLastIndex(paginationInfo.getLastRecordIndex());
- tmplatInfVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
-
- Map map = tmplatService.selectTemplateInfs(tmplatInfVO);
- int totCnt = Integer.parseInt((String) map.get("resultCnt"));
-
- paginationInfo.setTotalRecordCount(totCnt);
-
- model.addAttribute("resultList", map.get("resultList"));
- model.addAttribute("resultCnt", map.get("resultCnt"));
- model.addAttribute("paginationInfo", paginationInfo);
-
- return "cop/com/EgovTemplateInqirePopup";
- }
-
- /**
- * 팝업 페이지를 호출한다.
- *
- * @param userVO
- * @param sessionVO
- * @param model
- * @return
- * @throws Exception
- */
- @RequestMapping("/cop/com/openPopup.do")
- public String openPopupWindow(@RequestParam Map commandMap, ModelMap model) throws Exception {
-
- String requestUrl = (String) commandMap.get("requestUrl");
- String trgetId = (String) commandMap.get("trgetId");
- String width = (String) commandMap.get("width");
- String height = (String) commandMap.get("height");
- String typeFlag = (String) commandMap.get("typeFlag");
-
- if (trgetId != null && trgetId != "") {
- if (typeFlag != null && typeFlag != "") {
- model.addAttribute("requestUrl", requestUrl + "?trgetId=" + trgetId + "&PopFlag=Y&typeFlag=" + typeFlag);
- } else {
- model.addAttribute("requestUrl", requestUrl + "?trgetId=" + trgetId + "&PopFlag=Y");
- }
- } else {
- if (typeFlag != null && typeFlag != "") {
- model.addAttribute("requestUrl", requestUrl + "?PopFlag=Y&typeFlag=" + typeFlag);
- } else {
- model.addAttribute("requestUrl", requestUrl + "?PopFlag=Y");
- }
-
- }
-
- model.addAttribute("width", width);
- model.addAttribute("height", height);
-
- return "/cop/com/EgovModalPopupFrame";
- }
-}
diff --git a/src/main/java/itn/let/cop/org/service/EgovOrgChartManageService.java b/src/main/java/itn/let/cop/org/service/EgovOrgChartManageService.java
deleted file mode 100644
index 0a7c341..0000000
--- a/src/main/java/itn/let/cop/org/service/EgovOrgChartManageService.java
+++ /dev/null
@@ -1,108 +0,0 @@
-package itn.let.cop.org.service;
-
-import java.util.List;
-
-/**
- * 조직도 관리를 위한 서비스 인터페이스 클래스
- * @author ITN
- * @since 2018.06.11
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2018.06.11 ITN 최초 생성
- *
- *
- */
-public interface EgovOrgChartManageService {
-
- /**
- * 부서 목록을 조회한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public List selectPartInfs(PartInfVO partInfVO)
- throws Exception;
-
- /**
- * 부서명을 수정한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void updatePartTitle(PartInfVO partInfVO)
- throws Exception;
-
- /**
- * 부서명 순서를 변경한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void updatePartOrder(PartInfVO partInfVO)
- throws Exception;
-
- /**
- * 부서 정보를 등록한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void insertPartInf(PartInfVO partInfVO)
- throws Exception;
-
- /**
- * 부서 및 하위부서, 직원정보 전체를 삭제한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void deletePart(PartInfVO partInfVO)
- throws Exception;
-
- /**
- * 사원 정보를 조회한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public List selectPartEmpInf(EmpInfVO empInfVO)
- throws Exception;
-
- /**
- * 사원 정보를 등록한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void insertEmpInf(EmpInfVO empInfVO)
- throws Exception;
-
- /**
- * 사원 정보를 수정한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void updateEmpInf(EmpInfVO empInfVO)
- throws Exception;
-
- /**
- * 사원 정보를 삭제한다.
- *
- * @param partInfVO
- * @exception Exception Exception
- */
- public void deleteEmpInf(EmpInfVO empInfVO)
- throws Exception;
-
- public List selectChartDepth(PartInfVO partInfVO) throws Exception;
-
- public List selectUserPart(PartInfVO partInfVO) throws Exception;
-
-}
\ No newline at end of file
diff --git a/src/main/java/itn/let/cop/org/service/EmpInfVO.java b/src/main/java/itn/let/cop/org/service/EmpInfVO.java
deleted file mode 100644
index 32103c6..0000000
--- a/src/main/java/itn/let/cop/org/service/EmpInfVO.java
+++ /dev/null
@@ -1,168 +0,0 @@
-package itn.let.cop.org.service;
-
-import java.io.Serializable;
-
-import org.apache.commons.lang3.builder.ToStringBuilder;
-
-/**
- * 조직 부서에 사원 정보 조회를 위한 VO 클래스
- * @author ITN
- * @since 2018.06.11
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2018.06.11 ITN 최초 생성
- *
- *
- */
-@SuppressWarnings("serial")
-public class EmpInfVO implements Serializable {
-
- /** 사원 아이디 */
- private int paIdx = 0;
-
- /** 사원 명 */
- private String paName = "";
-
- /** 직급 */
- private String paGrade = "";
-
- /** 부서 아이디 */
- private int partIdx = 0;
-
- /** 입력 일자 */
- private String insertDate = "";
-
- /** 담당업무 */
- private String paJob = "";
-
- /** 전화번호 */
- private String paTel = "";
-
- /** 정렬 순번 */
- private int sortOrd = 0;
-
- /**
- * @return the paIdx
- */
- public int getPaIdx() {
- return paIdx;
- }
-
- /**
- * @param paIdx the paIdx to set
- */
- public void setPaIdx(int paIdx) {
- this.paIdx = paIdx;
- }
-
- /**
- * @return the paName
- */
- public String getPaName() {
- return paName;
- }
-
- /**
- * @param paName the paName to set
- */
- public void setPaName(String paName) {
- this.paName = paName;
- }
-
- /**
- * @return the paGrade
- */
- public String getPaGrade() {
- return paGrade;
- }
-
- /**
- * @param paGrade the paGrade to set
- */
- public void setPaGrade(String paGrade) {
- this.paGrade = paGrade;
- }
-
- /**
- * @return the partIdx
- */
- public int getPartIdx() {
- return partIdx;
- }
-
- /**
- * @param partIdx the partIdx to set
- */
- public void setPartIdx(int partIdx) {
- this.partIdx = partIdx;
- }
-
- /**
- * @return the insertDate
- */
- public String getInsertDate() {
- return insertDate;
- }
-
- /**
- * @param insertDate the insertDate to set
- */
- public void setInsertDate(String insertDate) {
- this.insertDate = insertDate;
- }
-
- /**
- * @return the paJob
- */
- public String getPaJob() {
- return paJob;
- }
-
- /**
- * @param paJob the paJob to set
- */
- public void setPaJob(String paJob) {
- this.paJob = paJob;
- }
-
- /**
- * @return the paTel
- */
- public String getPaTel() {
- return paTel;
- }
-
- /**
- * @param paTel the paTel to set
- */
- public void setPaTel(String paTel) {
- this.paTel = paTel;
- }
-
- /**
- * @return the sortOrd
- */
- public int getSortOrd() {
- return sortOrd;
- }
-
- /**
- * @param sortOrd the sortOrd to set
- */
- public void setSortOrd(int sortOrd) {
- this.sortOrd = sortOrd;
- }
-
- /**
- * toString 메소드를 대치한다.
- */
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
-}
diff --git a/src/main/java/itn/let/cop/org/service/PartInfVO.java b/src/main/java/itn/let/cop/org/service/PartInfVO.java
deleted file mode 100644
index 176cbc9..0000000
--- a/src/main/java/itn/let/cop/org/service/PartInfVO.java
+++ /dev/null
@@ -1,232 +0,0 @@
-package itn.let.cop.org.service;
-
-import java.io.Serializable;
-import java.util.HashMap;
-import java.util.Map;
-
-import org.apache.commons.lang3.builder.ToStringBuilder;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonProperty;
-
-/**
- * 조직도 부서 정보 조회를 위한 VO 클래스
- * @author ITN
- * @since 2018.06.11
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2018.06.11 ITN 최초 생성
- *
- *
- */
-
-@SuppressWarnings("serial")
-public class PartInfVO implements Serializable {
- /**
- * Jackson json annotaion
- * @JsonIgnore : 제외
- * @JsonProperty : json id 설정
- */
-
- /** 부서 아이디 */
- @JsonIgnore
- public int partIdx = 0;
-
- /** Jstree 부서 아이디 String */
- @JsonProperty("id")
- public String strPartIdx = "";
-
- /** 부서 명 */
- @JsonProperty("text")
- private String partTitle = "";
-
- /** 상위 부서 ID */
- @JsonIgnore
- private int upperIdx = 0;
-
- /** Jstree 상위 부서 ID String */
- @JsonProperty("parent")
- private String strUpperIdx = "";
-
- /** 부서 단계 */
- private int depth = 0;
-
- /** 입력 일자 */
- @JsonIgnore
- private String insertDate = "";
-
- /** 정렬 순번 */
- @JsonIgnore
- private int sortOrd = 0;
-
- /** Jstree li_attr in sortOrd */
- @JsonProperty("li_attr")
- private Map liAttr = null;
-
- /** 증가 정렬 순번 */
- @JsonIgnore
- private int incrsSortOrd = 0;
-
- public boolean selected = false;
-
- /**
- * @return the strPartIdx
- */
- public String getStrPartIdx() {
- return strPartIdx;
- }
-
- /**
- * @param strPartIdx the strPartIdx to set
- */
- public void setStrPartIdx(String strPartIdx) {
- this.strPartIdx = strPartIdx;
- }
-
- /**
- * @return the strUpperIdx
- */
- public String getStrUpperIdx() {
- return strUpperIdx;
- }
-
- /**
- * @param strUpperIdx the strUpperIdx to set
- */
- public void setStrUpperIdx(String strUpperIdx) {
- this.strUpperIdx = strUpperIdx;
- }
-
- /**
- * @return the partIdx
- */
- public int getPartIdx() {
- return partIdx;
- }
-
- /**
- * @param partIdx the partIdx to set
- */
- public void setPartIdx(int partIdx) {
- this.partIdx = partIdx;
- this.strPartIdx = Integer.toString(partIdx);
- }
-
- /**
- * @return the partTitle
- */
- public String getPartTitle() {
- return partTitle;
- }
-
- /**
- * @param partTitle the partTitle to set
- */
- public void setPartTitle(String partTitle) {
- this.partTitle = partTitle;
- }
-
- /**
- * @return the upperIdx
- */
- public int getUpperIdx() {
- return upperIdx;
- }
-
- /**
- * @param upperIdx the upperIdx to set
- */
- public void setUpperIdx(int upperIdx) {
- this.upperIdx = upperIdx;
- this.strUpperIdx = Integer.toString(upperIdx);
- }
-
- /**
- * @return the depth
- */
- public int getDepth() {
- return depth;
- }
-
- /**
- * @param depth the depth to set
- */
- public void setDepth(int depth) {
- this.depth = depth;
- }
-
- /**
- * @return the insertDate
- */
- public String getInsertDate() {
- return insertDate;
- }
-
- /**
- * @param insertDate the insertDate to set
- */
- public void setInsertDate(String insertDate) {
- this.insertDate = insertDate;
- }
-
- /**
- * @return the sortOrd
- */
- public int getSortOrd() {
- return sortOrd;
- }
-
- /**
- * @param sortOrd the sortOrd to set
- */
- public void setSortOrd(int sortOrd) {
- this.sortOrd = sortOrd;
- }
-
- /**
- * toString 메소드를 대치한다.
- */
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
-
- /**
- * @return the liAttr
- */
- public Map getLiAttr() {
- this.liAttr = new HashMap();
- this.liAttr.put("sortOrd", this.getSortOrd());
- this.liAttr.put("depth", this.getDepth());
-
- return liAttr;
- }
-
- /**
- * @return the incrsSortOrd
- */
- public int getIncrsSortOrd() {
- return incrsSortOrd;
- }
-
- /**
- * @param incrsSortOrd the incrsSortOrd to set
- */
- public void setIncrsSortOrd(int incrsSortOrd) {
- this.incrsSortOrd = incrsSortOrd;
- }
-
- public boolean isSelected() {
- return selected;
- }
-
- public void setSelected(boolean selected) {
- this.selected = selected;
- }
-
-}
diff --git a/src/main/java/itn/let/cop/org/service/impl/EgovOrgChartManageServiceImpl.java b/src/main/java/itn/let/cop/org/service/impl/EgovOrgChartManageServiceImpl.java
deleted file mode 100644
index 6270900..0000000
--- a/src/main/java/itn/let/cop/org/service/impl/EgovOrgChartManageServiceImpl.java
+++ /dev/null
@@ -1,150 +0,0 @@
-package itn.let.cop.org.service.impl;
-import java.util.List;
-
-import javax.annotation.Resource;
-
-import org.springframework.stereotype.Service;
-
-import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
-import itn.let.cop.org.service.EgovOrgChartManageService;
-import itn.let.cop.org.service.EmpInfVO;
-import itn.let.cop.org.service.PartInfVO;
-
-/**
- * 조직도 관리를 위한 서비스 구현 클래스
- * @author ITN
- * @since 2018.06.11
- * @version 1.0
- * @see
- *
- *
- * << 개정이력(Modification Information) >>
- *
- * 수정일 수정자 수정내용
- * ------- -------- ---------------------------
- * 2018.06.11 ITN 최초 생성
- *
- *
- */
-@Service("EgovOrgChartManageService")
-public class EgovOrgChartManageServiceImpl extends EgovAbstractServiceImpl implements EgovOrgChartManageService {
-
- @Resource(name = "OrgChartManageDAO")
- private OrgChartManageDAO orgChartManageDAO;
-
- /**
- * 부서 목록을 조회한다.
- * @param partInfVO
- * @return List
- * @exception Exception
- */
- public List selectPartInfs(PartInfVO partInfVO) throws Exception {
- List