SknBaseInfoResponse.java
2.46 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.yoho.search.models.recall;
import java.io.Serializable;
public class SknBaseInfoResponse implements Serializable {
private int productId;
private int productSkn;
private int brandId;
private int misortId;
private int priceArea;
private String productFeatureFactor;
private int heatValue;
private double uvScore;
private double salesPrice;
public SknBaseInfoResponse() {
}
public SknBaseInfoResponse(int productId, int productSkn, int brandId, int misortId, int priceArea, String productFeatureFactor, int heatValue, double uvScore,double salesPrice) {
this.productId = productId;
this.productSkn = productSkn;
this.brandId = brandId;
this.misortId = misortId;
this.priceArea = priceArea;
this.productFeatureFactor = productFeatureFactor;
this.heatValue = heatValue;
this.uvScore = uvScore;
this.salesPrice = salesPrice;
}
public int getProductId() {
return productId;
}
public void setProductId(int productId) {
this.productId = productId;
}
public int getProductSkn() {
return productSkn;
}
public void setProductSkn(int productSkn) {
this.productSkn = productSkn;
}
public int getBrandId() {
return brandId;
}
public void setBrandId(int brandId) {
this.brandId = brandId;
}
public int getMisortId() {
return misortId;
}
public void setMisortId(int misortId) {
this.misortId = misortId;
}
public int getPriceArea() {
return priceArea;
}
public void setPriceArea(int priceArea) {
this.priceArea = priceArea;
}
public String getProductFeatureFactor() {
return productFeatureFactor;
}
public void setProductFeatureFactor(String productFeatureFactor) {
this.productFeatureFactor = productFeatureFactor;
}
public int getHeatValue() {
return heatValue;
}
public void setHeatValue(int heatValue) {
this.heatValue = heatValue;
}
public double getUvScore() {
return uvScore;
}
public void setUvScore(double uvScore) {
this.uvScore = uvScore;
}
public double getSalesPrice() {
return salesPrice;
}
public void setSalesPrice(double salesPrice) {
this.salesPrice = salesPrice;
}
}