OrdersGood.java
2.77 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.yoho.unions.vo;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* Created by zhouxiang on 2016/11/7.
*/
public class OrdersGood implements Serializable{
private static final long serialVersionUID = -3477324308740804790L;
//商品编号
private String productSkn;
//SKU--具体到其中一个商品
private String productSku;
//商品名称
private String productName;
//分类id
private int sortId;
//分类名称
private String sortName;
//商品单价
private BigDecimal lastPrice;
//数量
private int buyNumber;
//商品结算金额 price*num-优惠&折扣
private BigDecimal realPayFee;
//优惠&折扣
private BigDecimal discountFee;
//佣金总额,两位小数;real_pay_fee*佣金比例
private BigDecimal commission;
//佣金分类
private String commType;
private String url;
public String getProductSkn() {
return productSkn;
}
public void setProductSkn(String productSkn) {
this.productSkn = productSkn;
}
public String getProductSku() {
return productSku;
}
public void setProductSku(String productSku) {
this.productSku = productSku;
}
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public int getSortId() {
return sortId;
}
public void setSortId(int sortId) {
this.sortId = sortId;
}
public String getSortName() {
return sortName;
}
public void setSortName(String sortName) {
this.sortName = sortName;
}
public BigDecimal getLastPrice() {
return lastPrice;
}
public void setLastPrice(BigDecimal lastPrice) {
this.lastPrice = lastPrice;
}
public int getBuyNumber() {
return buyNumber;
}
public void setBuyNumber(int buyNumber) {
this.buyNumber = buyNumber;
}
public BigDecimal getRealPayFee() {
return realPayFee;
}
public void setRealPayFee(BigDecimal realPayFee) {
this.realPayFee = realPayFee;
}
public BigDecimal getDiscountFee() {
return discountFee;
}
public void setDiscountFee(BigDecimal discountFee) {
this.discountFee = discountFee;
}
public BigDecimal getCommission() {
return commission;
}
public void setCommission(BigDecimal commission) {
this.commission = commission;
}
public String getCommType() {
return commType;
}
public void setCommType(String commType) {
this.commType = commType;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}