SysUserBean.java 814 Bytes
package com.huaheng.mmsrf.bean;

import java.util.ArrayList;

/**
 * Created by youjie on 2021/3/15
 */
public class SysUserBean {

    private int current;
    private ArrayList<SysUser> records;
    private int size;
    private int total;

    public int getCurrent() {
        return current;
    }

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

    public ArrayList <SysUser> getRecords() {
        return records;
    }

    public void setRecords(ArrayList <SysUser> 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;
    }
}