UserRecallResponse.java
1.36 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.yoho.search.models.recall;
import java.io.Serializable;
import java.util.List;
public class UserRecallResponse implements Serializable{
private static final long serialVersionUID = -5692239509936546967L;
private long total;
private int recallTotal;
private int recallTotalPage;//最小为1
private List<RecallSknInfo> sknList;
public UserRecallResponse() {
}
public UserRecallResponse(long total, int recallTotal, int recallTotalPage, List<RecallSknInfo> sknList) {
this.total = total;
this.recallTotal = recallTotal;
this.recallTotalPage = recallTotalPage;
this.sknList = sknList;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public int getRecallTotal() {
return recallTotal;
}
public void setRecallTotal(int recallTotal) {
this.recallTotal = recallTotal;
}
public int getRecallTotalPage() {
return recallTotalPage;
}
public void setRecallTotalPage(int recallTotalPage) {
this.recallTotalPage = recallTotalPage;
}
public List<RecallSknInfo> getSknList() {
return sknList;
}
public void setSknList(List<RecallSknInfo> sknList) {
this.sknList = sknList;
}
}