124 lines
2.4 KiB
Java
124 lines
2.4 KiB
Java
package kcc.xxx.service;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import kcc.com.cmm.ComDefaultVO;
|
|
|
|
@SuppressWarnings("serial")
|
|
public class XxxVO extends ComDefaultVO implements Serializable {
|
|
|
|
// 검색조건
|
|
private String srchYear = ""; // 검색 년도
|
|
|
|
// 상세
|
|
private String esntlId = ""; // 로그인ID
|
|
private String xxxSeq = ""; // xxx 일련번호
|
|
private String bbsId = ""; // 게시판ID
|
|
private String nttId = ""; // 게시글ID
|
|
private String atchFileId = ""; // 첨부파일 ID
|
|
private String lastUpdusrId = ""; // 최종수정자 ID
|
|
private String lastUpdusrNm = ""; // 최종수정자 이름
|
|
private String searchCnd = ""; // 검색 항목
|
|
private String searchWrd = ""; // 검색명
|
|
private String frstRegisterId = ""; // 최조작성자 ID
|
|
private String frstRegisterNm = ""; // 최조작성자 이름
|
|
|
|
public String getSrchYear() {
|
|
return srchYear;
|
|
}
|
|
|
|
public void setSrchYear(String srchYear) {
|
|
this.srchYear = srchYear;
|
|
}
|
|
|
|
public String getEsntlId() {
|
|
return esntlId;
|
|
}
|
|
|
|
public void setEsntlId(String esntlId) {
|
|
this.esntlId = esntlId;
|
|
}
|
|
|
|
public String getXxxSeq() {
|
|
return xxxSeq;
|
|
}
|
|
|
|
public void setXxxSeq(String xxxSeq) {
|
|
this.xxxSeq = xxxSeq;
|
|
}
|
|
|
|
public String getBbsId() {
|
|
return bbsId;
|
|
}
|
|
|
|
public void setBbsId(String bbsId) {
|
|
this.bbsId = bbsId;
|
|
}
|
|
|
|
public String getNttId() {
|
|
return nttId;
|
|
}
|
|
|
|
public void setNttId(String nttId) {
|
|
this.nttId = nttId;
|
|
}
|
|
|
|
public String getAtchFileId() {
|
|
return atchFileId;
|
|
}
|
|
|
|
public void setAtchFileId(String atchFileId) {
|
|
this.atchFileId = atchFileId;
|
|
}
|
|
|
|
public String getLastUpdusrId() {
|
|
return lastUpdusrId;
|
|
}
|
|
|
|
public void setLastUpdusrId(String lastUpdusrId) {
|
|
this.lastUpdusrId = lastUpdusrId;
|
|
}
|
|
|
|
public String getLastUpdusrNm() {
|
|
return lastUpdusrNm;
|
|
}
|
|
|
|
public void setLastUpdusrNm(String lastUpdusrNm) {
|
|
this.lastUpdusrNm = lastUpdusrNm;
|
|
}
|
|
|
|
public String getSearchCnd() {
|
|
return searchCnd;
|
|
}
|
|
|
|
public void setSearchCnd(String searchCnd) {
|
|
this.searchCnd = searchCnd;
|
|
}
|
|
|
|
public String getSearchWrd() {
|
|
return searchWrd;
|
|
}
|
|
|
|
public void setSearchWrd(String searchWrd) {
|
|
this.searchWrd = searchWrd;
|
|
}
|
|
|
|
public String getFrstRegisterId() {
|
|
return frstRegisterId;
|
|
}
|
|
|
|
public void setFrstRegisterId(String frstRegisterId) {
|
|
this.frstRegisterId = frstRegisterId;
|
|
}
|
|
|
|
public String getFrstRegisterNm() {
|
|
return frstRegisterNm;
|
|
}
|
|
|
|
public void setFrstRegisterNm(String frstRegisterNm) {
|
|
this.frstRegisterNm = frstRegisterNm;
|
|
}
|
|
|
|
|
|
}
|