ScherdulerHeaderData.java 841 Bytes
package com.huaheng.mmsrf.bean;

import java.util.List;

/**
 * Created by youjie on 2021/3/8
 */
public class ScherdulerHeaderData {

    private int current;
    private List<ScherdulerHeaderBean> records;
    private int size;
    private int total;

    public int getCurrent() {
        return current;
    }

    public void setCurrent(int current) {
        this.current = current;
    }

    public List <ScherdulerHeaderBean> getRecords() {
        return records;
    }

    public void setRecords(List <ScherdulerHeaderBean> records) {
        this.records = records;
    }

    public int getSize() {
        return size;
    }

    public void setSize(int size) {
        this.size = size;
    }

    public int getTotal() {
        return total;
    }

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