first commit
This commit is contained in:
164
src/main/java/egovframework/dms/hdb/vo/DmsHdbDefaultVO.java
Normal file
164
src/main/java/egovframework/dms/hdb/vo/DmsHdbDefaultVO.java
Normal file
@@ -0,0 +1,164 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* egovframework.dms.hdb.vo.DmsHdbDefaultVO
|
||||
*/
|
||||
package egovframework.dms.hdb.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DmsHdbDefaultVO
|
||||
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 hdbSeq;
|
||||
private String prjSeq;
|
||||
|
||||
public String getPrjSeq() {
|
||||
return this.prjSeq;
|
||||
}
|
||||
|
||||
public void setPrjSeq(String prjSeq) {
|
||||
this.prjSeq = prjSeq;
|
||||
}
|
||||
|
||||
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 setHdbSeq(String hdbSeq) {
|
||||
this.hdbSeq = hdbSeq;
|
||||
}
|
||||
|
||||
public String getHdbSeq() {
|
||||
return this.hdbSeq;
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
56
src/main/java/egovframework/dms/hdb/vo/DmsHdbGraphVO.java
Normal file
56
src/main/java/egovframework/dms/hdb/vo/DmsHdbGraphVO.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package egovframework.dms.hdb.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DmsHdbGraphVO implements Serializable {
|
||||
|
||||
private int year;
|
||||
private int month;
|
||||
private int cnt;
|
||||
|
||||
private int hdbStsA;
|
||||
private int hdbStsB;
|
||||
private int hdbStsC;
|
||||
|
||||
public int getYear() {
|
||||
return year;
|
||||
}
|
||||
public void setYear(int year) {
|
||||
this.year = year;
|
||||
}
|
||||
|
||||
public int getMonth() {
|
||||
return month;
|
||||
}
|
||||
public void setMonth(int month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public int getCnt() {
|
||||
return cnt;
|
||||
}
|
||||
public void setCnt(int cnt) {
|
||||
this.cnt = cnt;
|
||||
}
|
||||
|
||||
public int getHdbStsA() {
|
||||
return hdbStsA;
|
||||
}
|
||||
public void setHdbStsA(int hdbStsA) {
|
||||
this.hdbStsA = hdbStsA;
|
||||
}
|
||||
|
||||
public int getHdbStsB() {
|
||||
return hdbStsB;
|
||||
}
|
||||
public void setHdbStsB(int hdbStsB) {
|
||||
this.hdbStsB = hdbStsB;
|
||||
}
|
||||
|
||||
public int getHdbStsC() {
|
||||
return hdbStsC;
|
||||
}
|
||||
public void setHdbStsC(int hdbStsC) {
|
||||
this.hdbStsC = hdbStsC;
|
||||
}
|
||||
}
|
||||
105
src/main/java/egovframework/dms/hdb/vo/DmsHdbReplyVO.java
Normal file
105
src/main/java/egovframework/dms/hdb/vo/DmsHdbReplyVO.java
Normal file
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* egovframework.dms.hdb.vo.DmsHdbDefaultVO
|
||||
* egovframework.dms.hdb.vo.DmsHdbReplyVO
|
||||
*/
|
||||
package egovframework.dms.hdb.vo;
|
||||
|
||||
import egovframework.dms.hdb.vo.DmsHdbDefaultVO;
|
||||
|
||||
public class DmsHdbReplyVO
|
||||
extends DmsHdbDefaultVO {
|
||||
private String hdbReplySeq;
|
||||
private String hdbSeq;
|
||||
private String title;
|
||||
private String contents;
|
||||
private String replyDate;
|
||||
private String recSts;
|
||||
private String atchFileId;
|
||||
private String userId;
|
||||
private String userNm;
|
||||
private String userType;
|
||||
|
||||
public String getHdbReplySeq() {
|
||||
return this.hdbReplySeq;
|
||||
}
|
||||
|
||||
public void setHdbReplySeq(String hdbReplySeq) {
|
||||
this.hdbReplySeq = hdbReplySeq;
|
||||
}
|
||||
|
||||
public String getHdbSeq() {
|
||||
return this.hdbSeq;
|
||||
}
|
||||
|
||||
public void setHdbSeq(String hdbSeq) {
|
||||
this.hdbSeq = hdbSeq;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getContents() {
|
||||
return this.contents;
|
||||
}
|
||||
|
||||
public void setContents(String contents) {
|
||||
this.contents = contents;
|
||||
}
|
||||
|
||||
public String getReplyDate() {
|
||||
return this.replyDate;
|
||||
}
|
||||
|
||||
public void setReplyDate(String replyDate) {
|
||||
this.replyDate = replyDate;
|
||||
}
|
||||
|
||||
public String getRecSts() {
|
||||
return this.recSts;
|
||||
}
|
||||
|
||||
public void setRecSts(String recSts) {
|
||||
this.recSts = recSts;
|
||||
}
|
||||
|
||||
public String getAtchFileId() {
|
||||
return this.atchFileId;
|
||||
}
|
||||
|
||||
public void setAtchFileId(String atchFileId) {
|
||||
this.atchFileId = atchFileId;
|
||||
}
|
||||
|
||||
public String getUserNm() {
|
||||
return this.userNm;
|
||||
}
|
||||
|
||||
public void setUserNm(String userNm) {
|
||||
this.userNm = userNm;
|
||||
}
|
||||
|
||||
public String getUserType() {
|
||||
return this.userType;
|
||||
}
|
||||
|
||||
public void setUserType(String userType) {
|
||||
this.userType = userType;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
|
||||
177
src/main/java/egovframework/dms/hdb/vo/DmsHdbVO.java
Normal file
177
src/main/java/egovframework/dms/hdb/vo/DmsHdbVO.java
Normal file
@@ -0,0 +1,177 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* egovframework.dms.hdb.vo.DmsHdbDefaultVO
|
||||
* egovframework.dms.hdb.vo.DmsHdbVO
|
||||
*/
|
||||
package egovframework.dms.hdb.vo;
|
||||
|
||||
import egovframework.dms.hdb.vo.DmsHdbDefaultVO;
|
||||
|
||||
public class DmsHdbVO
|
||||
extends DmsHdbDefaultVO {
|
||||
private String hdbSeq;
|
||||
private String prjSeq;
|
||||
private String title;
|
||||
private String contents;
|
||||
private String createDate;
|
||||
private String compScdDate;
|
||||
private String compDate;
|
||||
private String hdbSts;
|
||||
private String recSts;
|
||||
private String atchFileId;
|
||||
private String userId;
|
||||
private String userNm;
|
||||
private String userType;
|
||||
private String etc;
|
||||
private String email;
|
||||
private String tel;
|
||||
private String smsYn;
|
||||
private String rdCnt;
|
||||
|
||||
public String getSmsYn() {
|
||||
return this.smsYn;
|
||||
}
|
||||
|
||||
public void setSmsYn(String smsYn) {
|
||||
this.smsYn = smsYn;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getTel() {
|
||||
return this.tel;
|
||||
}
|
||||
|
||||
public void setTel(String tel) {
|
||||
this.tel = tel;
|
||||
}
|
||||
|
||||
public void setHdbSeq(String hdbSeq) {
|
||||
this.hdbSeq = hdbSeq;
|
||||
}
|
||||
|
||||
public String getHdbSeq() {
|
||||
return this.hdbSeq;
|
||||
}
|
||||
|
||||
public void setPrjSeq(String prjSeq) {
|
||||
this.prjSeq = prjSeq;
|
||||
}
|
||||
|
||||
public String getPrjSeq() {
|
||||
return this.prjSeq;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public void setContents(String contents) {
|
||||
this.contents = contents;
|
||||
}
|
||||
|
||||
public String getContents() {
|
||||
return this.contents;
|
||||
}
|
||||
|
||||
public void setCreateDate(String createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getCreateDate() {
|
||||
return this.createDate;
|
||||
}
|
||||
|
||||
public void setCompScdDate(String compScdDate) {
|
||||
this.compScdDate = compScdDate;
|
||||
}
|
||||
|
||||
public String getCompScdDate() {
|
||||
return this.compScdDate;
|
||||
}
|
||||
|
||||
public void setCompDate(String compDate) {
|
||||
this.compDate = compDate;
|
||||
}
|
||||
|
||||
public String getCompDate() {
|
||||
return this.compDate;
|
||||
}
|
||||
|
||||
public void setHdbSts(String hdbSts) {
|
||||
this.hdbSts = hdbSts;
|
||||
}
|
||||
|
||||
public String getHdbSts() {
|
||||
return this.hdbSts;
|
||||
}
|
||||
|
||||
public void setRecSts(String recSts) {
|
||||
this.recSts = recSts;
|
||||
}
|
||||
|
||||
public String getRecSts() {
|
||||
return this.recSts;
|
||||
}
|
||||
|
||||
public void setAtchFileId(String atchFileId) {
|
||||
this.atchFileId = atchFileId;
|
||||
}
|
||||
|
||||
public String getAtchFileId() {
|
||||
return this.atchFileId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserNm(String userNm) {
|
||||
this.userNm = userNm;
|
||||
}
|
||||
|
||||
public String getUserNm() {
|
||||
return this.userNm;
|
||||
}
|
||||
|
||||
public void setUserType(String userType) {
|
||||
this.userType = userType;
|
||||
}
|
||||
|
||||
public String getUserType() {
|
||||
return this.userType;
|
||||
}
|
||||
|
||||
public void setEtc(String etc) {
|
||||
this.etc = etc;
|
||||
}
|
||||
|
||||
public String getEtc() {
|
||||
return this.etc;
|
||||
}
|
||||
|
||||
public String getRdCnt() {
|
||||
return this.rdCnt;
|
||||
}
|
||||
|
||||
public void setRdCnt(String rdCnt) {
|
||||
this.rdCnt = rdCnt;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user