shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
package com.ishop.model.vo;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 平台订单详情Vo
 * @date 2023-07-20
 */
public class PlatformOrderDetailVo implements Serializable {
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public Integer getMerId() {
        return merId;
    }
 
    public void setMerId(Integer merId) {
        this.merId = merId;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Integer getTotalNum() {
        return totalNum;
    }
 
    public void setTotalNum(Integer totalNum) {
        this.totalNum = totalNum;
    }
 
    public Double getProTotalPrice() {
        return proTotalPrice;
    }
 
    public void setProTotalPrice(Double proTotalPrice) {
        this.proTotalPrice = proTotalPrice;
    }
 
    public Double getTotalPostage() {
        return totalPostage;
    }
 
    public void setTotalPostage(Double totalPostage) {
        this.totalPostage = totalPostage;
    }
 
    public Double getTotalPrice() {
        return totalPrice;
    }
 
    public void setTotalPrice(Double totalPrice) {
        this.totalPrice = totalPrice;
    }
 
    public Double getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(Double couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public Integer getUseIntegral() {
        return useIntegral;
    }
 
    public void setUseIntegral(Integer useIntegral) {
        this.useIntegral = useIntegral;
    }
 
    public Double getIntegralPrice() {
        return integralPrice;
    }
 
    public void setIntegralPrice(Double integralPrice) {
        this.integralPrice = integralPrice;
    }
 
    public Double getPayPrice() {
        return payPrice;
    }
 
    public void setPayPrice(Double payPrice) {
        this.payPrice = payPrice;
    }
 
    public Double getPayPostage() {
        return payPostage;
    }
 
    public void setPayPostage(Double payPostage) {
        this.payPostage = payPostage;
    }
 
    public Boolean getPaid() {
        return paid;
    }
 
    public void setPaid(Boolean paid) {
        this.paid = paid;
    }
 
    public String getPayTime() {
        return payTime;
    }
 
    public void setPayTime(String payTime) {
        this.payTime = payTime;
    }
 
    public String getPayType() {
        return payType;
    }
 
    public void setPayType(String payType) {
        this.payType = payType;
    }
 
    public String getPayChannel() {
        return payChannel;
    }
 
    public void setPayChannel(String payChannel) {
        this.payChannel = payChannel;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getRefundStatus() {
        return refundStatus;
    }
 
    public void setRefundStatus(Integer refundStatus) {
        this.refundStatus = refundStatus;
    }
 
    public Integer getCancelStatus() {
        return cancelStatus;
    }
 
    public void setCancelStatus(Integer cancelStatus) {
        this.cancelStatus = cancelStatus;
    }
 
    public Boolean getIsUserDel() {
        return isUserDel;
    }
 
    public void setIsUserDel(Boolean userDel) {
        isUserDel = userDel;
    }
 
    public Boolean getIsMerchantDel() {
        return isMerchantDel;
    }
 
    public void setIsMerchantDel(Boolean merchantDel) {
        isMerchantDel = merchantDel;
    }
 
    public Integer getGainIntegral() {
        return gainIntegral;
    }
 
    public void setGainIntegral(Integer gainIntegral) {
        this.gainIntegral = gainIntegral;
    }
 
    public String getOutTradeNo() {
        return outTradeNo;
    }
 
    public void setOutTradeNo(String outTradeNo) {
        this.outTradeNo = outTradeNo;
    }
 
    public Boolean getIsSplit() {
        return isSplit;
    }
 
    public void setIsSplit(Boolean split) {
        isSplit = split;
    }
 
    public String getSplitOrderNo() {
        return splitOrderNo;
    }
 
    public void setSplitOrderNo(String splitOrderNo) {
        this.splitOrderNo = splitOrderNo;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getUserAddress() {
        return userAddress;
    }
 
    public void setUserAddress(String userAddress) {
        this.userAddress = userAddress;
    }
 
    public String getUserRemark() {
        return userRemark;
    }
 
    public void setUserRemark(String userRemark) {
        this.userRemark = userRemark;
    }
 
    public Integer getShippingType() {
        return shippingType;
    }
 
    public void setShippingType(Integer shippingType) {
        this.shippingType = shippingType;
    }
 
    public Double getFirstBrokerage() {
        return firstBrokerage;
    }
 
    public void setFirstBrokerage(Double firstBrokerage) {
        this.firstBrokerage = firstBrokerage;
    }
 
    public Double getSecondBrokerage() {
        return secondBrokerage;
    }
 
    public void setSecondBrokerage(Double secondBrokerage) {
        this.secondBrokerage = secondBrokerage;
    }
 
    public Double getCommissionCharge() {
        return commissionCharge;
    }
 
    public void setCommissionCharge(Double commissionCharge) {
        this.commissionCharge = commissionCharge;
    }
 
    public String getVerifyCode() {
        return verifyCode;
    }
 
    public void setVerifyCode(String verifyCode) {
        this.verifyCode = verifyCode;
    }
 
    public String getDeliveryType() {
        return deliveryType;
    }
 
    public void setDeliveryType(String deliveryType) {
        this.deliveryType = deliveryType;
    }
 
    public String getExpressName() {
        return expressName;
    }
 
    public void setExpressName(String expressName) {
        this.expressName = expressName;
    }
 
    public String getExpressCode() {
        return expressCode;
    }
 
    public void setExpressCode(String expressCode) {
        this.expressCode = expressCode;
    }
 
    public String getTrackingNumber() {
        return trackingNumber;
    }
 
    public void setTrackingNumber(String trackingNumber) {
        this.trackingNumber = trackingNumber;
    }
 
    public Long getClerkId() {
        return clerkId;
    }
 
    public void setClerkId(Long clerkId) {
        this.clerkId = clerkId;
    }
 
    public String getNikeName() {
        return nikeName;
    }
 
    public void setNikeName(String nikeName) {
        this.nikeName = nikeName;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public Boolean getIsLogoff() {
        return isLogoff;
    }
 
    public void setIsLogoff(Boolean logoff) {
        isLogoff = logoff;
    }
 
    public String getClerkName() {
        return clerkName;
    }
 
    public void setClerkName(String clerkName) {
        this.clerkName = clerkName;
    }
 
    public List<OrderDetailFrontVo> getOrderDetailList() {
        return orderDetailList;
    }
 
    public void setOrderDetailList(List<OrderDetailFrontVo> orderDetailList) {
        this.orderDetailList = orderDetailList;
    }
 
    public String getMerName() {
        return merName;
    }
 
    public void setMerName(String merName) {
        this.merName = merName;
    }
 
    public Boolean getMerIsSelf() {
        return merIsSelf;
    }
 
    public void setMerIsSelf(Boolean merIsSelf) {
        this.merIsSelf = merIsSelf;
    }
 
    public String getMerchantRemark() {
        return merchantRemark;
    }
 
    public void setMerchantRemark(String merchantRemark) {
        this.merchantRemark = merchantRemark;
    }
 
    // 商户订单包含的属性,2023-08-18
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    private String merchantRemark;
 
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
    //    @ApiModelProperty(value = "订单号")
    private String orderNo;
 
//    @ApiModelProperty(value = "商户ID,商户订单等级及以下有值")
    private Integer merId;
 
//    @ApiModelProperty(value = "用户id")
    private Long uid;
 
//    @ApiModelProperty(value = "订单商品总数")
    private Integer totalNum;
 
//    @ApiModelProperty(value = "商品总价")
    private Double proTotalPrice;
 
//    @ApiModelProperty(value = "邮费")
    private Double totalPostage;
 
//    @ApiModelProperty(value = "订单总价")
    private Double totalPrice;
 
//    @ApiModelProperty(value = "优惠券金额")
    private Double couponPrice;
 
//    @ApiModelProperty(value = "使用积分")
    private Integer useIntegral;
 
//    @ApiModelProperty(value = "积分抵扣金额")
    private Double integralPrice;
 
//    @ApiModelProperty(value = "实际支付金额")
    private Double payPrice;
 
//    @ApiModelProperty(value = "支付邮费")
    private Double payPostage;
 
//    @ApiModelProperty(value = "支付状态")
    private Boolean paid;
 
//    @ApiModelProperty(value = "支付时间")
    private String payTime;
 
//    @ApiModelProperty(value = "支付方式:weixin,alipay,yue")
    private String payType;
 
//    @ApiModelProperty(value = "支付渠道:public-公众号,mini-小程序,h5-网页支付,yue-余额,wechatIos-微信Ios,wechatAndroid-微信Android,alipay-支付宝,alipayApp-支付宝App")
    private String payChannel;
 
//    @ApiModelProperty(value = "订单状态(0:待支付,1:待发货,2:部分发货, 3:待核销,4:待收货,5:已收货,6:已完成,9:已取消)")
    private Integer status;
 
//    @ApiModelProperty(value = "退款状态:0 未退款 1 申请中 2 退款中 3 已退款")
    private Integer refundStatus;
 
//    @ApiModelProperty(value = "取消状态:0-未取消,1-系统取消,2-用户取消")
    private Integer cancelStatus;
 
//    @ApiModelProperty(value = "用户是否删除")
    private Boolean isUserDel;
 
//    @ApiModelProperty(value = "商户是否删除")
    private Boolean isMerchantDel;
 
//    @ApiModelProperty(value = "赠送积分")
    private Integer gainIntegral;
 
//    @ApiModelProperty(value = "商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号")
    private String outTradeNo;
 
//    @ApiModelProperty(value = "订单是否拆分")
    private Boolean isSplit = false;
 
//    @ApiModelProperty(value = "拆分前的订单号")
    private String splitOrderNo;
 
//    @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单")
    private Integer type;
 
//    @ApiModelProperty(value = "订单等级:0-主订单,1-商户订单,2-商户子订单")
    private Integer level;
 
//    @ApiModelProperty(value = "创建时间")
    private String createTime;
 
//    @ApiModelProperty(value = "收货人姓名")
    private String realName;
 
//    @ApiModelProperty(value = "收货人电话")
    private String userPhone;
 
//    @ApiModelProperty(value = "收货详细地址")
    private String userAddress;
 
//    @ApiModelProperty(value = "用户备注")
    private String userRemark;
 
//    @ApiModelProperty(value = "配送方式 1=快递 ,2=门店自提")
    private Integer shippingType;
 
//    @ApiModelProperty(value = "一级返佣金额")
    private Double firstBrokerage;
 
//    @ApiModelProperty(value = "二级返佣金额")
    private Double secondBrokerage;
 
//    @ApiModelProperty(value = "平台手续费")
    private Double commissionCharge;
 
//    @ApiModelProperty(value = "核销码")
    private String verifyCode;
 
//    @ApiModelProperty(value = "发货类型:express-快递,fictitious:虚拟发货")
    private String deliveryType;
 
//    @ApiModelProperty(value = "快递名称")
    private String expressName;
 
//    @ApiModelProperty(value = "快递公司简称")
    private String expressCode;
 
//    @ApiModelProperty(value = "运单号")
    private String trackingNumber;
 
//    @ApiModelProperty(value = "核销员id")
    private Long clerkId;
 
    // 以下为自定义添加部分
 
//    @ApiModelProperty(value = "用户昵称")
    private String nikeName;
 
//    @ApiModelProperty(value = "用户手机号")
    private String phone;
 
//    @ApiModelProperty(value = "用户是否注销")
    private Boolean isLogoff;
 
//    @ApiModelProperty(value = "核销员名称")
    private String clerkName;
 
//    @ApiModelProperty(value = "订单商品详情")
    List<OrderDetailFrontVo> orderDetailList;
 
//    @ApiModelProperty(value = "商户名称")
    private String merName;
 
//    @ApiModelProperty(value = "商户是否自营:0-非自营,1-自营")
    private Boolean merIsSelf;
}