com.obatis.config.response.result.PageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
package com.obatis.config.response.result;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
public class PageInfo {
@ApiModelProperty(value = "分页信息")
private List list = new ArrayList<>();
@ApiModelProperty(value = "总条数")
private long total = 0;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy