26 lines
531 B
Java
26 lines
531 B
Java
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;
|
|
}
|
|
}
|