Helius
2021-11-01 110a99baa82a748bee993ad01ca03370c9dc0cf2
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
package com.matrix.system.hive.bean;
 
import com.matrix.core.anotations.Extend;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 *
 * 
 * @date 2016-07-03 20:53
 */
public class SysOrderItem implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 订单明细
     */
    private Long id;
 
    /**
     * 订单id
     */
    private Long orderId;
 
    
 
    /**
     * 购买数量
     */
    private Integer count;
 
 
    /**
     * 退款数量
     */
    private Integer refundCount;
 
 
    /**
     * 是否为赠送和 是否
     */
    private String isFree;
 
    /**
     *购买产品类型(家居产品,项目,套餐,充值卡)
     */
    private String type;
 
    /**
     * 商城 商品id
     */
    private Long  goodsId;
 
    /**
     * 商品组合id
     */
    private Long assembleId;
    
    /**
     * 订单号
     */
    private String orderNo ;
    
    /**
     * 订单时间
     */
    private Date orderTime;
    /**
     * 单价
     */
    private Double price;
    /**
     * 折后单价
     */
    private Double zkPrice;
    /**
     * 订单条目状态
     */
    private String status;
    /**
     * 卡付金额
     */
    private Double cardPay;
    /**
     * 现金付款金额
     */
    private Double cashPay;
    /**
     * 欠款金额
     */
    private Double arrears;
 
 
    /**
     * 付款方式
     */
    private String payMethod;
    
    private String payMethodDetail;
    /**
     * 支付金额
     */
    private Double payMoney;
    
    /**
     * 付款卡id 卡使用情况id
     */
    private Long cardId;
    
 
    /**
     * 是否为综合卡创建的订单明细
     * 1是
     */
    @Extend
    private Integer isZongheCard;
 
 
    /**
     * 扩展字段
     */
 
    private ShoppingGoods shoppingGoods;
 
    /**
     * 原有数量
     */
    private int preCount;
 
    /**
     * 是否退库存
     */
    private String isReturnStore;
 
    /**
     * 退款时,原itemid
     */
    private Long oldItemId;
 
    public Long getOldItemId() {
        return oldItemId;
    }
 
    public void setOldItemId(Long oldItemId) {
        this.oldItemId = oldItemId;
    }
 
    public String getIsReturnStore() {
        return isReturnStore;
    }
 
    public void setIsReturnStore(String isReturnStore) {
        this.isReturnStore = isReturnStore;
    }
 
    public int getPreCount() {
        return preCount;
    }
 
    public Integer getRefundCount() {
        return refundCount;
    }
 
    public void setRefundCount(Integer refundCount) {
        this.refundCount = refundCount;
    }
 
    public void setPreCount(int preCount) {
        this.preCount = preCount;
    }
 
    public ShoppingGoods getShoppingGoods() {
        return shoppingGoods;
    }
 
    public void setShoppingGoods(ShoppingGoods shoppingGoods) {
        this.shoppingGoods = shoppingGoods;
    }
 
    public Integer getIsZongheCard() {
        return isZongheCard;
    }
 
    public void setIsZongheCard(Integer isZongheCard) {
        this.isZongheCard = isZongheCard;
    }
 
    /**
     * 业绩计算
     */
    private List<AchieveNew> achieveList;
 
 
    public List<AchieveNew> getAchieveList() {
        return achieveList;
    }
 
    public void setAchieveList(List<AchieveNew> achieveList) {
        this.achieveList = achieveList;
    }
 
    public String getPayMethodDetail() {
        return payMethodDetail;
    }
 
    public void setPayMethodDetail(String payMethodDetail) {
        this.payMethodDetail = payMethodDetail;
    }
 
    public Double getPayMoney() {
        return payMoney;
    }
 
    public void setPayMoney(Double payMoney) {
        this.payMoney = payMoney;
    }
 
    public String getPayMethod() {
        return payMethod;
    }
 
    public void setPayMethod(String payMethod) {
        this.payMethod = payMethod;
    }
 
 
 
    public Double getPrice() {
        return price;
    }
 
    public void setPrice(Double price) {
        this.price = price;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public Date getOrderTime() {
        return orderTime;
    }
 
    public void setOrderTime(Date orderTime) {
        this.orderTime = orderTime;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
    
    public Double getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(Double zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public Long getAssembleId() {
        return assembleId;
    }
 
    public void setAssembleId(Long assembleId) {
        this.assembleId = assembleId;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getType() {
        return type;
    }
 
    public String getIsFree() {
        return isFree;
    }
 
    public void setIsFree(String isFree) {
        this.isFree = isFree;
    }
 
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
 
    public Double getCardPay() {
        return cardPay;
    }
 
    public void setCardPay(Double cardPay) {
        this.cardPay = cardPay;
    }
 
 
    public Double getCashPay() {
        return cashPay;
    }
 
    public void setCashPay(Double cashPay) {
        if(cashPay==null){
            cashPay=0D;
        }
        this.cashPay = cashPay;
    }
 
    public Double getArrears() {
        return arrears;
    }
 
    public void setArrears(Double arrears) {
        this.arrears = arrears;
    }
 
    public Long getCardId() {
        return cardId;
    }
 
    public void setCardId(Long cardId) {
        this.cardId = cardId;
    }
 
 
}