PageModel.java
571 Bytes
package com.server.web.common.model;
import java.util.List;
public class PageModel extends BaseModel {
private long total;
private List list;
private String name;
public void setTotal(long total) {
this.total = total;
}
public void setList(List list) {
this.list = list;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public long getTotal() {
return total;
}
public List getList() {
return list;
}
}