PersonnelResultResponseVo.java 936 Bytes
package com.ruoyi.pojo.response.personnel;

import java.util.List;

public class PersonnelResultResponseVo {
    private List<PersonnelData> data;
    private int currentPage;
    private int totalCount;

    @Override
    public String toString() {
        return "PersonnelResultResponseVo{" +
                "data=" + data +
                ", currentPage=" + currentPage +
                ", totalCount=" + totalCount +
                '}';
    }

    public List<PersonnelData> getData() {
        return data;
    }

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

    public int getCurrentPage() {
        return currentPage;
    }

    public void setCurrentPage(int currentPage) {
        this.currentPage = currentPage;
    }

    public int getTotalCount() {
        return totalCount;
    }

    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
}