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
package com.ishop.model.vo;
 
import java.util.List;
 
public class OrderFrontVo {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    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 Boolean getPaid() {
        return paid;
    }
 
    public void setPaid(Boolean paid) {
        this.paid = paid;
    }
 
    public Long getPayTime() {
        return payTime;
    }
 
    public void setPayTime(Long payTime) {
        this.payTime = payTime;
    }
 
    public Double getPayPrice() {
        return payPrice;
    }
 
    public void setPayPrice(Double payPrice) {
        this.payPrice = payPrice;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getCancelStatus() {
        return cancelStatus;
    }
 
    public void setCancelStatus(Integer cancelStatus) {
        this.cancelStatus = cancelStatus;
    }
 
    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 getTotalPrice() {
        return totalPrice;
    }
 
    public void setTotalPrice(Double totalPrice) {
        this.totalPrice = totalPrice;
    }
 
    public Double getPayPostage() {
        return payPostage;
    }
 
    public void setPayPostage(Double payPostage) {
        this.payPostage = payPostage;
    }
 
    public Double getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(Double couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public Double getIntegralPrice() {
        return integralPrice;
    }
 
    public void setIntegralPrice(Double integralPrice) {
        this.integralPrice = integralPrice;
    }
 
    public List<OrderDetailFrontVo> getOrderInfoList() {
        return orderInfoList;
    }
 
    public void setOrderInfoList(List<OrderDetailFrontVo> orderInfoList) {
        this.orderInfoList = orderInfoList;
    }
 
    public String getMerName() {
        return merName;
    }
 
    public void setMerName(String merName) {
        this.merName = merName;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    //    @ApiModelProperty(value = "订单id")
    private Long id;
 
//    @ApiModelProperty(value = "订单号")
    private String orderNo;
 
//    @ApiModelProperty(value = "商户ID")
    private Integer merId;
 
//    @ApiModelProperty(value = "支付状态")
    private Boolean paid;
 
//    @ApiModelProperty(value = "支付时间")
    private Long payTime;
 
//    @ApiModelProperty(value = "支付金额")
    private Double payPrice;
 
//    @ApiModelProperty(value = "订单状态(0:待支付,1:待发货,2:部分发货, 3:待核销,4:待收货,5:已收货,6:已完成,9:已取消)")
    private Integer status;
 
//    @ApiModelProperty(value = "取消状态:0-未取消,1-系统取消,2-用户取消")
    private Integer cancelStatus;
 
//    @ApiModelProperty(value = "订单商品总数")
    private Integer totalNum;
 
//    @ApiModelProperty(value = "商品总价")
    private Double proTotalPrice;
 
//    @ApiModelProperty(value = "订单总价")
    private Double totalPrice;
 
//    @ApiModelProperty(value = "支付邮费")
    private Double payPostage;
 
//    @ApiModelProperty(value = "优惠券金额")
    private Double couponPrice;
 
//    @ApiModelProperty(value = "积分抵扣金额")
    private Double integralPrice;
 
//    @ApiModelProperty(value = "订单详情对象列表")
    private List<OrderDetailFrontVo> orderInfoList;
 
//    @ApiModelProperty(value = "商户名称")
    private String merName;
 
//    @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单, 2-秒杀订单")
    private Integer type;
}