Helius
2022-05-26 eb706a988e747b624fda0d44e0aaf6a4ee5e20eb
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
package com.matrix.system.app.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author wzy
 * @date 2020-12-23
 **/
@ApiModel(value = "OrderDetailItemVo", description = "订单详情明细表")
public class OrderDetailItemVo {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "数量")
    private String count;
 
    @ApiModelProperty(value = "产品类型")
    private String type;
 
    @ApiModelProperty(value = "现金支付")
    private BigDecimal cashPay;
 
    @ApiModelProperty(value = "储值卡支付")
    private BigDecimal cardPay;
 
    @ApiModelProperty(value = "欠款")
    private BigDecimal arrears;
 
    @ApiModelProperty(value = "原价")
    private BigDecimal price;
 
    @ApiModelProperty(value = "折扣价格")
    private BigDecimal zkPrice;
 
    @ApiModelProperty(value = "支付状态")
    private String status;
 
    @ApiModelProperty(value = "订单业绩")
    private List<OrderDetailAchieveItemVo> achieves;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public List<OrderDetailAchieveItemVo> getAchieves() {
        return achieves;
    }
 
    public void setAchieves(List<OrderDetailAchieveItemVo> achieves) {
        this.achieves = achieves;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public String getCount() {
        return count;
    }
 
    public void setCount(String count) {
        this.count = count;
    }
 
    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 getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public BigDecimal getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(BigDecimal zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public BigDecimal getArrears() {
        return arrears;
    }
 
    public void setArrears(BigDecimal arrears) {
        this.arrears = arrears;
    }
}