@Repository("noticeVo")
public class NoticeVo implements Serializable {
private static final long serialVersionUID = 1L;
/** id */
private int id;
/** title */
private String title;
/** contents */
private String contents;
/** registrationDate */
private Date registrationDate;
/** lastModifier */
private String lastModifier;
/** lastModifiedDate */
private Date lastModifiedDate;
/** fileCnt */
private int fileCnt;
/** retrievedCnt */
private int retrievedCnt;
/**
* getId
* @return
*/
public int getId() {
return id;
}
/**
* getTitle
* @return
*/
public String getTitle() {
return title;
}
/**
* getContents
* @return
*/
public String getContents() {
return contents;
}
/**
* getRegistrationDate
* @return
*/
public Date getRegistrationDate() {
return registrationDate;
}
/**
* getLastModifier
* @return
*/
public String getLastModifier() {
return lastModifier;
}
/**
* getLastModifiedDate
* @return
*/
public Date getLastModifiedDate() {
return lastModifiedDate;
}
/**
* getFileCnt
* @return
*/
public int getFileCnt() {
return fileCnt;
}
/**
* getRetrievedCnt
* @return
*/
public int getRetrievedCnt() {
return retrievedCnt;
}
/**
* setId
* @param id
*/
public void setId(int id) {
this.id = id;
}
/**
* setTitle
* @param title
*/
public void setTitle(String title) {
this.title = title;
}
/**
* setContents
* @param contents
*/
public void setContents(String contents) {
this.contents = contents;
}
/**
* setRegistrationDate
* @param registrationDate
*/
public void setRegistrationDate(Date registrationDate) {
this.registrationDate = registrationDate;
}
/**
* setLastModifier
* @param lastModifier
*/
public void setLastModifier(String lastModifier) {
this.lastModifier = lastModifier;
}
/**
* setLastModifiedDate
* @param lastModifiedDate
*/
public void setLastModifiedDate(Date lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
}
/**
* setFileCnt
* @param fileCnt
*/
public void setFileCnt(int fileCnt) {
this.fileCnt = fileCnt;
}
/**
* setRetrievedCnt
* @param retrievedCnt
*/
public void setRetrievedCnt(int retrievedCnt) {
this.retrievedCnt = retrievedCnt;
}
}
이 위키의 내용은 다음의 라이센스에 따릅니다 :
CC Attribution-Noncommercial-Share Alike 3.0 Unported전자정부 표준프레임워크 라이센스(
바로가기)
전자정부 표준프레임워크 활용의 안정성 보장을 위해 위험성을 지속적으로 모니터링하고 있으나, 오픈소스의 특성상 문제가 발생할 수 있습니다.
전자정부 표준프레임워크는 Apache 2.0 라이선스를 따르고 있는 오픈소스 프로그램입니다. Apache 2.0 라이선스에 따라 표준프레임워크를 활용하여 발생된 업무중단, 컴퓨터 고장 또는 오동작으로 인한 손해 등에 대해서 책임이 없습니다.