|
1
2
3
4
5
6
7
8
9
10
|
package com.huaheng.mmsrf.bean;
import java.util.List;
/**
* Created by youjie on 2021/3/8
*/
public class ScherdulerHeaderData {
private int current;
|
|
11
|
private List<SchedulerHeader> records;
|
|
12
13
14
15
16
17
18
19
20
21
22
|
private int size;
private int total;
public int getCurrent() {
return current;
}
public void setCurrent(int current) {
this.current = current;
}
|
|
23
|
public List <SchedulerHeader> getRecords() {
|
|
24
25
26
|
return records;
}
|
|
27
|
public void setRecords(List <SchedulerHeader> records) {
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
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;
}
|
|
46
47
48
49
50
51
52
53
54
55
|
@Override
public String toString() {
return "ScherdulerHeaderData{" +
"current=" + current +
", records=" + records +
", size=" + size +
", total=" + total +
'}';
}
|
|
56
|
}
|