Helius
2021-01-26 cde91db7a91dbd1406b3eb700880ff8343de7ccb
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
package com.matrix.system.app.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.tools.DateUtil;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * @author wzy
 * @date 2020-12-23
 **/
@ApiModel(value = "OrderDetailVo", description = "订单详情返回参数类")
public class OrderDetailVo {
 
    @ApiModelProperty(value = "订单ID")
    private String orderId;
 
    @ApiModelProperty(value = "会员ID")
    private String vipId;
 
    @ApiModelProperty(value = "会员姓名")
    private String vipName;
 
    @ApiModelProperty(value = "会员手机号")
    private String phone;
 
    @ApiModelProperty(value = "订单号")
    private String orderNo;
 
    @ApiModelProperty(value = "顾问姓名")
    private String staffName;
 
    @ApiModelProperty(value = "现金支付金额")
    private BigDecimal cashPay;
 
    @ApiModelProperty(value = "储值卡支付金额")
    private BigDecimal cardPay;
 
    @ApiModelProperty(value = "应付金额")
    private BigDecimal needPay;
 
    @ApiModelProperty(value = "实付金额")
    private BigDecimal realPay;
 
    @ApiModelProperty(value = "优惠金额")
    private BigDecimal discount;
 
    @ApiModelProperty(value = "订单明细")
    private List<OrderDetailItemVo> items;
 
    @ApiModelProperty(value = "订单状态")
    private String orderStatus;
 
    @ApiModelProperty(value = "欠款")
    private BigDecimal arrears;
 
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_SS, timezone = "GMT+8")
    @ApiModelProperty(value = "下单时间")
    private Date orderTime;
 
    public String getVipId() {
        return vipId;
    }
 
    public void setVipId(String vipId) {
        this.vipId = vipId;
    }
 
    public Date getOrderTime() {
        return orderTime;
    }
 
    public void setOrderTime(Date orderTime) {
        this.orderTime = orderTime;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public BigDecimal getArrears() {
        return arrears;
    }
 
    public void setArrears(BigDecimal arrears) {
        this.arrears = arrears;
    }
 
    public String getOrderStatus() {
        return orderStatus;
    }
 
    public void setOrderStatus(String orderStatus) {
        this.orderStatus = orderStatus;
    }
 
    public List<OrderDetailItemVo> getItems() {
        return items;
    }
 
    public void setItems(List<OrderDetailItemVo> items) {
        this.items = items;
    }
 
    public String getVipName() {
        return vipName;
    }
 
    public void setVipName(String vipName) {
        this.vipName = vipName;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public String getStaffName() {
        return staffName;
    }
 
    public void setStaffName(String staffName) {
        this.staffName = staffName;
    }
 
    public BigDecimal getCashPay() {
        return cashPay;
    }
 
    public void setCashPay(BigDecimal cashPay) {
        this.cashPay = cashPay;
    }
 
    public BigDecimal getCardPay() {
        return cardPay;
    }
 
    public void setCardPay(BigDecimal cardPay) {
        this.cardPay = cardPay;
    }
 
    public BigDecimal getNeedPay() {
        return needPay;
    }
 
    public void setNeedPay(BigDecimal needPay) {
        this.needPay = needPay;
    }
 
    public BigDecimal getRealPay() {
        return realPay;
    }
 
    public void setRealPay(BigDecimal realPay) {
        this.realPay = realPay;
    }
 
    public BigDecimal getDiscount() {
        return discount;
    }
 
    public void setDiscount(BigDecimal discount) {
        this.discount = discount;
    }
}