page.java
来自「图书管理系统」· Java 代码 · 共 99 行
JAVA
99 行
package com.lhq.prj.bms.core;
import java.util.List;
public class Page {
/** �ܼ�¼�� */
private int totalProperty;
/** ��ҳ��� */
private List root;
/** ��ʼҳ�� */
private int start;
/** ÿҳ���� */
private int limit;
private int end;
/** �ɹ���� */
private boolean success;
/** ��ѯ��� */
private List conditions;
private String key;
private Object objCondition;
public Object getObjCondition() {
return objCondition;
}
public void setObjCondition(Object objCondition) {
this.objCondition = objCondition;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public List getRoot() {
return root;
}
public void setRoot(List root) {
this.root = root;
}
public int getStart() {
return start;
}
public void setStart(int start) {
this.start = start;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
public int getTotalProperty() {
return totalProperty;
}
public void setTotalProperty(int totalProperty) {
this.totalProperty = totalProperty;
}
public List getConditions() {
return conditions;
}
public void setConditions(List conditions) {
this.conditions = conditions;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public int getEnd(){
return this.end;
}
public void setEnd(int end){
this.end=end;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?