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

com.webank.wedatasphere.dss.common.entity.PageInfo Maven / Gradle / Ivy

The newest version!
package com.webank.wedatasphere.dss.common.entity;

import java.util.List;

/**
 * 分页结果通用类
 * Author: xlinliu
 * Date: 2023/4/20
 */
public class PageInfo {
    List data;
    long total;

    public PageInfo(List data, long total) {
        this.data = data;
        this.total = total;
    }

    public List getData() {
        return data;
    }

    public void setData(List data) {
        this.data = data;
    }

    public long getTotal() {
        return total;
    }

    public void setTotal(long total) {
        this.total = total;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy