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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
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")
public class VipShopOrder {
    @Column(name = "vo_id")
    private Long id;
    @Column(name = "vo_order_sn")
    private String orderSn;// 订单号
    @Column(name = "vo_order_status")
    private Integer status;// 订单状态:0-不合格,1-待定,2-已完结
    @Column(name = "vo_new_customer")
    private Integer newCustomer;// 新老客标识:2-老客,1-新客 , 0-待 定
    @Column(name = "vo_channel_tag")
    private String channelTag;// 渠道标识
    @Column(name = "vo_order_time")
    private Long orderTime;// 下单时间
    @Column(name = "vo_sign_time")
    private Long signTime;// 签收时间
    @Column(name = "vo_settled_time")
    private Long settledTime;// 结算时间
    @Column(name = "vo_last_update_time")
    private Long lastUpdateTime;// 订单上次更新时间 时间戳 单位毫秒
    @Column(name = "vo_settled")
    private Integer settled;// 订单结算状态 0-未结算,1-已结算
    @Column(name = "vo_self_buy")
    private Integer selfBuy;// 是否自推自买 0-否,1-是
    @Column(name = "vo_order_sub_status_name")
    private String orderSubStatusName;// 订单子状态:流转状态-支持状态:(已下单、已付款、已签收、待结算、已结算、已失效)
    @Column(name = "vo_commission")
    private BigDecimal commission;// 商品总佣金:单位元
    @Column(name = "vo_after_sale_change_commission")
    private String afterSaleChangeCommission;// 售后订单佣金变动:仅在订单完结之后发生售后行为时返回
    @Column(name = "vo_after_sale_change_goods_count")
    private Integer afterSaleChangeGoodsCount;// 售后订单总商品数量变动:仅在订单完结之后发生售后行为时返回
    @Column(name = "vo_commission_enter_time")
    private Long commissionEnterTime;// 入账时间,时间戳,单位毫秒
    @Column(name = "vo_order_source")
    private String orderSource;// 订单来源
    @Column(name = "vo_pid")
    private String pid;// 推广PID:目前等同于channelTag
    @Column(name = "vo_is_prepay")
    private Integer isPrepay;// 是否预付订单:0-否,1-是
    @Column(name = "vo_b2c_user_id")
    private Long b2cUserId;// 买家的b2c_user_id
    @Column(name = "vo_create_time")
    private Date createTime;
    @Column(name = "vo_update_time")
    private Date updateTime;
    private List<VipShopOrderDetail> detailList;
 
    public List<VipShopOrderDetail> getDetailList() {
        return detailList;
    }
 
    public void setDetailList(List<VipShopOrderDetail> detailList) {
        this.detailList = detailList;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getOrderSn() {
        return orderSn;
    }
 
    public void setOrderSn(String orderSn) {
        this.orderSn = orderSn;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getNewCustomer() {
        return newCustomer;
    }
 
    public void setNewCustomer(Integer newCustomer) {
        this.newCustomer = newCustomer;
    }
 
    public String getChannelTag() {
        return channelTag;
    }
 
    public void setChannelTag(String channelTag) {
        this.channelTag = channelTag;
    }
 
    public Long getOrderTime() {
        return orderTime;
    }
 
    public void setOrderTime(Long orderTime) {
        this.orderTime = orderTime;
    }
 
    public Long getSignTime() {
        return signTime;
    }
 
    public void setSignTime(Long signTime) {
        this.signTime = signTime;
    }
 
    public Long getSettledTime() {
        return settledTime;
    }
 
    public void setSettledTime(Long settledTime) {
        this.settledTime = settledTime;
    }
 
    public Long getLastUpdateTime() {
        return lastUpdateTime;
    }
 
    public void setLastUpdateTime(Long lastUpdateTime) {
        this.lastUpdateTime = lastUpdateTime;
    }
 
    public Integer getSettled() {
        return settled;
    }
 
    public void setSettled(Integer settled) {
        this.settled = settled;
    }
 
    public Integer getSelfBuy() {
        return selfBuy;
    }
 
    public void setSelfBuy(Integer selfBuy) {
        this.selfBuy = selfBuy;
    }
 
    public String getOrderSubStatusName() {
        return orderSubStatusName;
    }
 
    public void setOrderSubStatusName(String orderSubStatusName) {
        this.orderSubStatusName = orderSubStatusName;
    }
 
    public BigDecimal getCommission() {
        return commission;
    }
 
    public void setCommission(BigDecimal commission) {
        this.commission = commission;
    }
 
    public String getAfterSaleChangeCommission() {
        return afterSaleChangeCommission;
    }
 
    public void setAfterSaleChangeCommission(String afterSaleChangeCommission) {
        this.afterSaleChangeCommission = afterSaleChangeCommission;
    }
 
    public Integer getAfterSaleChangeGoodsCount() {
        return afterSaleChangeGoodsCount;
    }
 
    public void setAfterSaleChangeGoodsCount(Integer afterSaleChangeGoodsCount) {
        this.afterSaleChangeGoodsCount = afterSaleChangeGoodsCount;
    }
 
    public Long getCommissionEnterTime() {
        return commissionEnterTime;
    }
 
    public void setCommissionEnterTime(Long commissionEnterTime) {
        this.commissionEnterTime = commissionEnterTime;
    }
 
    public String getOrderSource() {
        return orderSource;
    }
 
    public void setOrderSource(String orderSource) {
        this.orderSource = orderSource;
    }
 
    public String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
    public Integer getIsPrepay() {
        return isPrepay;
    }
 
    public void setIsPrepay(Integer isPrepay) {
        this.isPrepay = isPrepay;
    }
 
    public Long getB2cUserId() {
        return b2cUserId;
    }
 
    public void setB2cUserId(Long b2cUserId) {
        this.b2cUserId = b2cUserId;
    }
 
    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;
    }
 
}