Commit 57302f1e by zhanghou

提交setFullSize方法和isPaging方法

parent ec797164
......@@ -107,9 +107,17 @@ public class ModuleList<T extends IModule> extends ArrayList<T> implements IModu
}
@JsonIgnore
public boolean isPaging() {
return this.paging;
}
@JsonIgnore
public int fullSize() {
return this.size();
}
@JsonIgnore
public void setFullSize(int fullSize) {
this.fullSize = fullSize;
}
public void removeAll() {
this.clear();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment