/* * Decompiled with CFR 0.152. * * Could not load the following classes: * egovframework.cms.board.vo.HmsBrdCateDefaultVO */ package egovframework.cms.board.vo; import java.io.Serializable; public class HmsBrdCateDefaultVO 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 cateSeq; private String searchCateMastSeq; public void setSearchCondition(String searchCondition) { this.searchCondition = searchCondition; } public String getSearchCondition() { return this.searchCondition; } public void setSearchKeyword(String searchKeyword) { this.searchKeyword = searchKeyword; } public String getSearchKeyword() { return this.searchKeyword; } public void setSearchUseYn(String searchUseYn) { this.searchUseYn = searchUseYn; } public String getSearchUseYn() { return this.searchUseYn; } public void setPageIndex(int pageIndex) { this.pageIndex = pageIndex; } public int getPageIndex() { return this.pageIndex; } public void setPageUnit(int pageUnit) { this.pageUnit = pageUnit; } public int getPageUnit() { return this.pageUnit; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public int getPageSize() { return this.pageSize; } public void setFirstIndex(int firstIndex) { this.firstIndex = firstIndex; } public int getFirstIndex() { return this.firstIndex; } public void setLastIndex(int lastIndex) { this.lastIndex = lastIndex; } public int getLastIndex() { return this.lastIndex; } public void setRecordCountPerPage(int recordCountPerPage) { this.recordCountPerPage = recordCountPerPage; } public int getRecordCountPerPage() { return this.recordCountPerPage; } 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 void setOrderby(String orderby) { this.orderby = orderby; } public String getOrderby() { return this.orderby; } public void setCateSeq(String cateSeq) { this.cateSeq = cateSeq; } public String getCateSeq() { return this.cateSeq; } public String toParam() { StringBuilder sb = new StringBuilder(); sb.append("?pageIndex=" + this.pageIndex); if (!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); } return sb.toString(); } public String getSearchCateMastSeq() { return this.searchCateMastSeq; } public void setSearchCateMastSeq(String searchCateMastSeq) { this.searchCateMastSeq = searchCateMastSeq; } }