PersonnelResultResponseVo.java
936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;
}
}