AggKeyCountTwoLevel.java
977 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
package com.yoho.search.models.aggregations;
import java.util.List;
public class AggKeyCountTwoLevel {
private AggKeyCount firstAggKeyCount;
private List<AggKeyCount> secondAggKeyCountList;
public AggKeyCountTwoLevel() {
}
public AggKeyCountTwoLevel(AggKeyCount firstAggKeyCount, List<AggKeyCount> secondAggKeyCountList) {
this.firstAggKeyCount = firstAggKeyCount;
this.secondAggKeyCountList = secondAggKeyCountList;
}
public AggKeyCount getFirstAggKeyCount() {
return firstAggKeyCount;
}
public void setFirstAggKeyCount(AggKeyCount firstAggKeyCount) {
this.firstAggKeyCount = firstAggKeyCount;
}
public List<AggKeyCount> getSecondAggKeyCountList() {
return secondAggKeyCountList;
}
public void setSecondAggKeyCountList(List<AggKeyCount> secondAggKeyCountList) {
this.secondAggKeyCountList = secondAggKeyCountList;
}
}