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

com.github.houbb.web.common.dto.resp.BasePageResp Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package com.github.houbb.web.common.dto.resp;

import java.util.List;

/**
 * @author binbin.hou
 * @since 0.0.1
 */
public class BasePageResp extends BaseResp {

    /**
     * 总条数
     * @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy