package itn.let.cop.bbs.service; import java.io.Serializable; /** * 게시물 변경 이력에 대한 데이터 처리 모델 클래스 * @author ITN * @since 2018.08.17 * @version 1.0 * @see * *
 * << 개정이력(Modification Information) >>
 * 
 *   수정일      수정자          수정내용
 *  -------    --------    ---------------------------
 *  2018.08.17          최초 생성
 *  
 *  
*/ @SuppressWarnings("serial") public class BoardChgHst implements Serializable { /** * 게시물 아이디 */ private long nttId = 0L; /** * 게시판 아이디 */ private String bbsId = ""; /** * 게시판 명 */ private String bbsNm = ""; /** * 이력 아이디 */ private long histId = 0L; /** * 이력구분 CUD */ private String histSe = ""; /** * 게시물 제목 */ private String nttSj = ""; /** * 게시물 내용 */ private String nttCn = ""; /** * 게시자명 */ private String frstRegisterNm = ""; /** * 최초등록시점 */ private String frstRegistPnttm = ""; /** * 최초등록자 아이디 */ private String frstRegisterId = ""; /** * 등록자 IP */ private String ntcrIp = ""; /** searchVO */ /** * 게시물 아이디 검색문자 */ private String strNttId = ""; /** * 이력구분 문자 */ private String strHistSe = ""; /** 검색시작일 */ private String searchBgnDe = ""; /** 검색조건 */ private String searchCnd = ""; /** 검색종료일 */ private String searchEndDe = ""; /** 검색단어 */ private String searchWrd = ""; /** 정렬순서(DESC,ASC) */ private long sortOrdr = 0L; /** 검색사용여부 */ 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; /** searchVO */ /** * @return the nttId */ public long getNttId() { return nttId; } /** * @param nttId the nttId to set */ public void setNttId(long nttId) { this.nttId = nttId; } /** * @return the bbsId */ public String getBbsId() { return bbsId; } /** * @param bbsId the bbsId to set */ public void setBbsId(String bbsId) { this.bbsId = bbsId; } /** * @return the bbsNm */ public String getBbsNm() { return bbsNm; } /** * @param bbsNm the bbsNm to set */ public void setBbsNm(String bbsNm) { this.bbsNm = bbsNm; } /** * @return the histId */ public long getHistId() { return histId; } /** * @param histId the histId to set */ public void setHistId(long histId) { this.histId = histId; } /** * @return the histSe */ public String getHistSe() { return histSe; } /** * @param histSe the histSe to set */ public void setHistSe(String histSe) { this.histSe = histSe; switch(this.histSe) { case "C" : this.strHistSe = "생성"; break; case "U" : this.strHistSe = "수정"; break; case "D" : this.strHistSe = "삭제"; break; default : break; } } /** * @return the nttSj */ public String getNttSj() { return nttSj; } /** * @param nttSj the nttSj to set */ public void setNttSj(String nttSj) { this.nttSj = nttSj; } /** * @return the nttCn */ public String getNttCn() { return nttCn; } /** * @param nttCn the nttCn to set */ public void setNttCn(String nttCn) { this.nttCn = nttCn; } /** * @return the frstRegisterNm */ public String getFrstRegisterNm() { return frstRegisterNm; } /** * @param frstRegisterNm the frstRegisterNm to set */ public void setFrstRegisterNm(String frstRegisterNm) { this.frstRegisterNm = frstRegisterNm; } /** * @return the frstRegistPnttm */ public String getFrstRegistPnttm() { return frstRegistPnttm; } /** * @param frstRegistPnttm the frstRegistPnttm to set */ public void setFrstRegistPnttm(String frstRegistPnttm) { this.frstRegistPnttm = frstRegistPnttm; } /** * @return the frstRegisterId */ public String getFrstRegisterId() { return frstRegisterId; } /** * @param frstRegisterId the frstRegisterId to set */ public void setFrstRegisterId(String frstRegisterId) { this.frstRegisterId = frstRegisterId; } /** * @return the searchBgnDe */ public String getSearchBgnDe() { return searchBgnDe; } /** * @param searchBgnDe the searchBgnDe to set */ public void setSearchBgnDe(String searchBgnDe) { this.searchBgnDe = searchBgnDe; } /** * @return the searchCnd */ public String getSearchCnd() { return searchCnd; } /** * @param searchCnd the searchCnd to set */ public void setSearchCnd(String searchCnd) { this.searchCnd = searchCnd; } /** * @return the searchEndDe */ public String getSearchEndDe() { return searchEndDe; } /** * @param searchEndDe the searchEndDe to set */ public void setSearchEndDe(String searchEndDe) { this.searchEndDe = searchEndDe; } /** * @return the searchWrd */ public String getSearchWrd() { return searchWrd; } /** * @param searchWrd the searchWrd to set */ public void setSearchWrd(String searchWrd) { this.searchWrd = searchWrd; } /** * @return the sortOrdr */ public long getSortOrdr() { return sortOrdr; } /** * @param sortOrdr the sortOrdr to set */ public void setSortOrdr(long sortOrdr) { this.sortOrdr = sortOrdr; } /** * @return the searchUseYn */ public String getSearchUseYn() { return searchUseYn; } /** * @param searchUseYn the searchUseYn to set */ public void setSearchUseYn(String searchUseYn) { this.searchUseYn = searchUseYn; } /** * @return the pageIndex */ public int getPageIndex() { return pageIndex; } /** * @param pageIndex the pageIndex to set */ public void setPageIndex(int pageIndex) { this.pageIndex = pageIndex; } /** * @return the pageUnit */ public int getPageUnit() { return pageUnit; } /** * @param pageUnit the pageUnit to set */ public void setPageUnit(int pageUnit) { this.pageUnit = pageUnit; } /** * @return the pageSize */ public int getPageSize() { return pageSize; } /** * @param pageSize the pageSize to set */ public void setPageSize(int pageSize) { this.pageSize = pageSize; } /** * @return the firstIndex */ public int getFirstIndex() { return firstIndex; } /** * @param firstIndex the firstIndex to set */ public void setFirstIndex(int firstIndex) { this.firstIndex = firstIndex; } /** * @return the lastIndex */ public int getLastIndex() { return lastIndex; } /** * @param lastIndex the lastIndex to set */ public void setLastIndex(int lastIndex) { this.lastIndex = lastIndex; } /** * @return the recordCountPerPage */ public int getRecordCountPerPage() { return recordCountPerPage; } /** * @param recordCountPerPage the recordCountPerPage to set */ public void setRecordCountPerPage(int recordCountPerPage) { this.recordCountPerPage = recordCountPerPage; } /** * @return the rowNo */ public int getRowNo() { return rowNo; } /** * @param rowNo the rowNo to set */ public void setRowNo(int rowNo) { this.rowNo = rowNo; } /** * @return the strNttId */ public String getStrNttId() { return strNttId; } /** * @param strNttId the strNttId to set */ public void setStrNttId(String strNttId) { this.strNttId = strNttId; } /** * @return the strHistSe */ public String getStrHistSe() { return strHistSe; } /** * @param strHistSe the strHistSe to set */ public void setStrHistSe(String strHistSe) { this.strHistSe = strHistSe; } /** * @return the ntcrIp */ public String getNtcrIp() { return ntcrIp; } /** * @param ntcrIp the ntcrIp to set */ public void setNtcrIp(String ntcrIp) { this.ntcrIp = ntcrIp; } }