first commit
This commit is contained in:
25
hrmsEjb/wenrgise/common/vo/DetailSizeValues.java
Normal file
25
hrmsEjb/wenrgise/common/vo/DetailSizeValues.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package wenrgise.common.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class DetailSizeValues implements Serializable {
|
||||
int detailRecordPerPage = 0;
|
||||
|
||||
int maxPages = 0;
|
||||
|
||||
public int getDetailRecordPerPage() {
|
||||
return this.detailRecordPerPage;
|
||||
}
|
||||
|
||||
public void setDetailRecordPerPage(int newDetailRecordPerPage) {
|
||||
this.detailRecordPerPage = newDetailRecordPerPage;
|
||||
}
|
||||
|
||||
public int getMaxPages() {
|
||||
return this.maxPages;
|
||||
}
|
||||
|
||||
public void setMaxPages(int newMaxPages) {
|
||||
this.maxPages = newMaxPages;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user