com.github.houbb.web.common.dto.resp.BasePageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.dto.resp;
import java.util.List;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class BasePageInfo {
/**
* 总条数
* @since 0.0.1
*/
private long total;
private List list;
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}