yujian
2020-05-23 dd6a31aae79b35ccf0e006704a4d9e1d950c57d6
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package com.yeshi.fanli.entity.vipshop;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 唯品会订单详情
 * @author Administrator
 *
 */
@Table("yeshi_ec_vipshop_order_detail")
public class VipShopOrderDetail {
 
    public final static int STATUS_INVALID = 0;// 不合格
    public final static int STATUS_UNKOWN = 1;// 待定
    public final static int STATUS_FINISH = 2;// 已完结
 
    // 明细
    @Column(name = "vod_id")
    private Long id;
    @Column(name = "vod_identify_code")
    private String identifyCode;// 唯一标识
    @Column(name = "vod_goods_id")
    private String goodsId;// 商品id
    @Column(name = "vod_goods_name")
    private String goodsName;// 商品名称
    @Column(name = "vod_goods_thumb")
    private String goodsThumb;// 商品缩略图
    @Column(name = "vod_goods_count")
    private Integer goodsCount;// 商品数量
    @Column(name = "vod_commission_total_cost")
    private BigDecimal commissionTotalCost;// 商品计佣金额(元,保留两位小数)
    @Column(name = "vod_commission_rate")
    private BigDecimal commissionRate;// 商品佣金比例(%)
    @Column(name = "vod_commission")
    private BigDecimal commission;// 商品佣金金额(元,保留两位小数)
    @Column(name = "vod_comm_code")
    private String commCode;// 佣金编码:对应商品二级分类
    @Column(name = "vod_comm_name")
    private String commName;// 佣金方案名称
    @Column(name = "vod_order_source")
    private String orderSource;// 订单来源
    @Column(name = "vod_size_id")
    private String sizeId;// 商品尺码:2019.01.01之后可用
    @Column(name = "vod_status")
    private Integer status;// 商品状态:0-不合格,1-待定,2-已完结
    @Column(name = "vod_order_sn")
    private String orderSn;// 订单号
    @Column(name = "vod_create_time")
    private Date createTime;// 创建时间
    @Column(name = "vod_update_time")
    private Date updateTime;// 更新时间
 
    private List<VipShopAfterSaleDetailInfo> afterSaleInfo;// 售后信息
    
    private VipShopOrder order;//订单
    
 
    public VipShopOrder getOrder() {
        return order;
    }
 
    public void setOrder(VipShopOrder order) {
        this.order = order;
    }
 
    public List<VipShopAfterSaleDetailInfo> getAfterSaleInfo() {
        return afterSaleInfo;
    }
 
    public void setAfterSaleInfo(List<VipShopAfterSaleDetailInfo> afterSaleInfo) {
        this.afterSaleInfo = afterSaleInfo;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getIdentifyCode() {
        return identifyCode;
    }
 
    public void setIdentifyCode(String identifyCode) {
        this.identifyCode = identifyCode;
    }
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public String getGoodsThumb() {
        return goodsThumb;
    }
 
    public void setGoodsThumb(String goodsThumb) {
        this.goodsThumb = goodsThumb;
    }
 
    public Integer getGoodsCount() {
        return goodsCount;
    }
 
    public void setGoodsCount(Integer goodsCount) {
        this.goodsCount = goodsCount;
    }
 
    public BigDecimal getCommissionTotalCost() {
        return commissionTotalCost;
    }
 
    public void setCommissionTotalCost(BigDecimal commissionTotalCost) {
        this.commissionTotalCost = commissionTotalCost;
    }
 
    public BigDecimal getCommissionRate() {
        return commissionRate;
    }
 
    public void setCommissionRate(BigDecimal commissionRate) {
        this.commissionRate = commissionRate;
    }
 
    public BigDecimal getCommission() {
        return commission;
    }
 
    public void setCommission(BigDecimal commission) {
        this.commission = commission;
    }
 
    public String getCommCode() {
        return commCode;
    }
 
    public void setCommCode(String commCode) {
        this.commCode = commCode;
    }
 
    public String getCommName() {
        return commName;
    }
 
    public void setCommName(String commName) {
        this.commName = commName;
    }
 
    public String getOrderSource() {
        return orderSource;
    }
 
    public void setOrderSource(String orderSource) {
        this.orderSource = orderSource;
    }
 
    public String getSizeId() {
        return sizeId;
    }
 
    public void setSizeId(String sizeId) {
        this.sizeId = sizeId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getOrderSn() {
        return orderSn;
    }
 
    public void setOrderSn(String orderSn) {
        this.orderSn = orderSn;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
}