first commit
This commit is contained in:
@@ -0,0 +1,266 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* egovframework.cms.board.vo.HmsBrdPostDefaultVO
|
||||
* org.apache.commons.lang.builder.ToStringBuilder
|
||||
*/
|
||||
package egovframework.cms.board.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||
|
||||
public class HmsBrdPostDefaultVO
|
||||
implements Serializable {
|
||||
private String searchCondition = "";
|
||||
private String searchKeyword = "";
|
||||
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 String bmode;
|
||||
private String parentUrl;
|
||||
private String pageUseYn = "Y";
|
||||
private String orderby;
|
||||
private String brdPostSeq;
|
||||
private String brdMngSeq;
|
||||
private String userId;
|
||||
private String userNm;
|
||||
private String atchSeq;
|
||||
private String searchBrdDepth;
|
||||
private String searchBrdGroup;
|
||||
private String searchCateSeq = "";
|
||||
private String searchCreateDate;
|
||||
private String searchUserId;
|
||||
private String searchStartDate;
|
||||
private String searchEndDate;
|
||||
|
||||
public String getAtchSeq() {
|
||||
return this.atchSeq;
|
||||
}
|
||||
|
||||
public void setAtchSeq(String atchSeq) {
|
||||
this.atchSeq = atchSeq;
|
||||
}
|
||||
|
||||
public String getBrdMngSeq() {
|
||||
return this.brdMngSeq;
|
||||
}
|
||||
|
||||
public void setBrdMngSeq(String brdMngSeq) {
|
||||
this.brdMngSeq = brdMngSeq;
|
||||
}
|
||||
|
||||
public String getUserNm() {
|
||||
return this.userNm;
|
||||
}
|
||||
|
||||
public void setUserNm(String userNm) {
|
||||
this.userNm = userNm;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public void setBrdPostSeq(String brdPostSeq) {
|
||||
this.brdPostSeq = brdPostSeq;
|
||||
}
|
||||
|
||||
public String getBrdPostSeq() {
|
||||
return this.brdPostSeq;
|
||||
}
|
||||
|
||||
public void setOrderby(String orderby) {
|
||||
this.orderby = orderby;
|
||||
}
|
||||
|
||||
public String getOrderby() {
|
||||
return this.orderby;
|
||||
}
|
||||
|
||||
public void setBmode(String bmode) {
|
||||
this.bmode = bmode;
|
||||
}
|
||||
|
||||
public String getBmode() {
|
||||
return this.bmode;
|
||||
}
|
||||
|
||||
public void setParentUrl(String parentUrl) {
|
||||
this.parentUrl = parentUrl;
|
||||
}
|
||||
|
||||
public String getParentUrl() {
|
||||
return this.parentUrl;
|
||||
}
|
||||
|
||||
public void setPageUseYn(String pageUseYn) {
|
||||
this.pageUseYn = pageUseYn;
|
||||
}
|
||||
|
||||
public String getPageUseYn() {
|
||||
return this.pageUseYn;
|
||||
}
|
||||
|
||||
public String toParam() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("?pageIndex=" + this.pageIndex);
|
||||
if (this.bmode != null && !this.bmode.equals("")) {
|
||||
sb.append("&bmode=" + this.bmode);
|
||||
}
|
||||
if (this.searchCondition != null && !this.searchCondition.equals("")) {
|
||||
sb.append("&searchCondition=" + this.searchCondition);
|
||||
}
|
||||
if (this.searchKeyword != null && !this.searchKeyword.equals("")) {
|
||||
sb.append("&searchKeyword=" + this.searchKeyword);
|
||||
}
|
||||
if (this.searchCateSeq != null && !this.searchCateSeq.equals("")) {
|
||||
sb.append("&searchCateSeq=" + this.searchCateSeq);
|
||||
}
|
||||
if (this.pageUnit != 0) {
|
||||
sb.append("&pageUnit=" + this.pageUnit);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public int getFirstIndex() {
|
||||
return this.firstIndex;
|
||||
}
|
||||
|
||||
public void setFirstIndex(int firstIndex) {
|
||||
this.firstIndex = firstIndex;
|
||||
}
|
||||
|
||||
public int getLastIndex() {
|
||||
return this.lastIndex;
|
||||
}
|
||||
|
||||
public void setLastIndex(int lastIndex) {
|
||||
this.lastIndex = lastIndex;
|
||||
}
|
||||
|
||||
public int getRecordCountPerPage() {
|
||||
return this.recordCountPerPage;
|
||||
}
|
||||
|
||||
public void setRecordCountPerPage(int recordCountPerPage) {
|
||||
this.recordCountPerPage = recordCountPerPage;
|
||||
}
|
||||
|
||||
public String getSearchCondition() {
|
||||
return this.searchCondition;
|
||||
}
|
||||
|
||||
public void setSearchCondition(String searchCondition) {
|
||||
this.searchCondition = searchCondition;
|
||||
}
|
||||
|
||||
public String getSearchKeyword() {
|
||||
return this.searchKeyword;
|
||||
}
|
||||
|
||||
public void setSearchKeyword(String searchKeyword) {
|
||||
this.searchKeyword = searchKeyword;
|
||||
}
|
||||
|
||||
public String getSearchUseYn() {
|
||||
return this.searchUseYn;
|
||||
}
|
||||
|
||||
public void setSearchUseYn(String searchUseYn) {
|
||||
this.searchUseYn = searchUseYn;
|
||||
}
|
||||
|
||||
public int getPageIndex() {
|
||||
return this.pageIndex;
|
||||
}
|
||||
|
||||
public void setPageIndex(int pageIndex) {
|
||||
this.pageIndex = pageIndex;
|
||||
}
|
||||
|
||||
public int getPageUnit() {
|
||||
return this.pageUnit;
|
||||
}
|
||||
|
||||
public void setPageUnit(int pageUnit) {
|
||||
this.pageUnit = pageUnit;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return this.pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return ToStringBuilder.reflectionToString((Object)this);
|
||||
}
|
||||
|
||||
public String getSearchBrdDepth() {
|
||||
return this.searchBrdDepth;
|
||||
}
|
||||
|
||||
public void setSearchBrdDepth(String searchBrdDepth) {
|
||||
this.searchBrdDepth = searchBrdDepth;
|
||||
}
|
||||
|
||||
public String getSearchBrdGroup() {
|
||||
return this.searchBrdGroup;
|
||||
}
|
||||
|
||||
public void setSearchBrdGroup(String searchBrdGroup) {
|
||||
this.searchBrdGroup = searchBrdGroup;
|
||||
}
|
||||
|
||||
public String getSearchCateSeq() {
|
||||
return this.searchCateSeq;
|
||||
}
|
||||
|
||||
public void setSearchCateSeq(String searchCateSeq) {
|
||||
this.searchCateSeq = searchCateSeq;
|
||||
}
|
||||
|
||||
public String getSearchCreateDate() {
|
||||
return this.searchCreateDate;
|
||||
}
|
||||
|
||||
public void setSearchCreateDate(String searchCreateDate) {
|
||||
this.searchCreateDate = searchCreateDate;
|
||||
}
|
||||
|
||||
public String getSearchUserId() {
|
||||
return this.searchUserId;
|
||||
}
|
||||
|
||||
public void setSearchUserId(String searchUserId) {
|
||||
this.searchUserId = searchUserId;
|
||||
}
|
||||
|
||||
public String getSearchStartDate() {
|
||||
return this.searchStartDate;
|
||||
}
|
||||
|
||||
public void setSearchStartDate(String searchStartDate) {
|
||||
this.searchStartDate = searchStartDate;
|
||||
}
|
||||
|
||||
public String getSearchEndDate() {
|
||||
return this.searchEndDate;
|
||||
}
|
||||
|
||||
public void setSearchEndDate(String searchEndDate) {
|
||||
this.searchEndDate = searchEndDate;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user