?? pagefairy.java
字號:
package com.tsinghuait.st0717.hospitalsystem.dto;
public class PageFairy {
private int nextpage; //下一頁的條數
private int priorPage;//待顯頁的顯示條數
private int rowsCount;//紀錄總條數
private int pageCount;//一頁顯示的條數
private int page;
public static int numberpage=2;//一頁顯示條數
public int getNextpage() {
return nextpage;
}
public void setNextpage(int nextpage) {
this.nextpage = nextpage;
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getPageCount() {
return pageCount;
}
public void setPageCount(int pageCount) {
this.pageCount = pageCount;
}
public int getPriorPage() {
return priorPage;
}
public void setPriorPage(int priorPage) {
this.priorPage = priorPage;
}
public int getRowsCount() {
return rowsCount;
}
public void setRowsCount(int rowsCount) {
this.rowsCount = rowsCount;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -