All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obatis.config.response.result.PageInfo Maven / Gradle / Ivy

There is a newer version: 3.0.1-release
Show newest version
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