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
package com.iplatform.model.vo;
 
import java.io.Serializable;
 
/**
 * 返回移动端的订单统计信息,我的界面中呈现。
 * @author 时克英
 * @date 2023-06-30
 */
public class OrderCenterNumVo implements Serializable {
 
    public Integer getAwaitPayCount() {
        return awaitPayCount;
    }
 
    public void setAwaitPayCount(Integer awaitPayCount) {
        this.awaitPayCount = awaitPayCount;
    }
 
    public Integer getAwaitShippedCount() {
        return awaitShippedCount;
    }
 
    public void setAwaitShippedCount(Integer awaitShippedCount) {
        this.awaitShippedCount = awaitShippedCount;
    }
 
    public Integer getVerificationCount() {
        return verificationCount;
    }
 
    public void setVerificationCount(Integer verificationCount) {
        this.verificationCount = verificationCount;
    }
 
    public Integer getReceiptCount() {
        return receiptCount;
    }
 
    public void setReceiptCount(Integer receiptCount) {
        this.receiptCount = receiptCount;
    }
 
    public Integer getAwaitReplyCount() {
        return awaitReplyCount;
    }
 
    public void setAwaitReplyCount(Integer awaitReplyCount) {
        this.awaitReplyCount = awaitReplyCount;
    }
 
    public Integer getRefundCount() {
        return refundCount;
    }
 
    public void setRefundCount(Integer refundCount) {
        this.refundCount = refundCount;
    }
 
    //    @ApiModelProperty(value = "未支付订单数量")
    private Integer awaitPayCount = 0;
 
//    @ApiModelProperty(value = "待发货订单数量")
    private Integer awaitShippedCount = 0;
 
//    @ApiModelProperty(value = "待核销订单数量")
    private Integer verificationCount = 0;
 
//    @ApiModelProperty(value = "待收货订单数量")
    private Integer receiptCount = 0;
 
//    @ApiModelProperty(value = "待评价数量")
    private Integer awaitReplyCount = 0;
 
//    @ApiModelProperty(value = "退款中数量")
    private Integer refundCount = 0;
}