TechnologyData.java 849 Bytes
package com.huaheng.mmsrf.bean;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by youjie on 2021/3/11
 */
public class TechnologyData {

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

    public int getCurrent() {
        return current;
    }

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

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

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