RecallSknCount.java
1.18 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
59
package com.yoho.search.recall.config;
public class RecallSknCount {
private int newShelve;
private int promotion;
private int reducePrice;
private int ctrValue;
private int heatValue;
private int random;
public int getNewShelve() {
return newShelve;
}
public void setNewShelve(int newShelve) {
this.newShelve = newShelve;
}
public int getPromotion() {
return promotion;
}
public void setPromotion(int promotion) {
this.promotion = promotion;
}
public int getReducePrice() {
return reducePrice;
}
public void setReducePrice(int reducePrice) {
this.reducePrice = reducePrice;
}
public int getCtrValue() {
return ctrValue;
}
public void setCtrValue(int ctrValue) {
this.ctrValue = ctrValue;
}
public int getHeatValue() {
return heatValue;
}
public void setHeatValue(int heatValue) {
this.heatValue = heatValue;
}
public int getRandom() {
return random;
}
public void setRandom(int random) {
this.random = random;
}
}