jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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
package com.matrix.system.shopXcx.api.vo;
 
import com.matrix.system.shopXcx.bean.ShopCoupon;
 
import java.util.List;
 
/**
 * @author jyy
 */
public class OrderCouponsInfoVO {
 
    /**
     * 订单价格
     */
    private Double orderMoney;
 
    /**
     * 商品价格(商品实际价格)
     */
    private Double commodityPrice;
 
    /**
     * 邮费
     */
    private Double postage;
 
    /**
     * 可用优惠券列表
     */
    private List<ShopCoupon> couponList;
 
 
    public Double getOrderMoney() {
        return orderMoney;
    }
 
    public void setOrderMoney(Double orderMoney) {
        this.orderMoney = orderMoney;
    }
 
    public Double getCommodityPrice() {
        return commodityPrice;
    }
 
    public void setCommodityPrice(Double commodityPrice) {
        this.commodityPrice = commodityPrice;
    }
 
    public Double getPostage() {
        return postage;
    }
 
    public void setPostage(Double postage) {
        this.postage = postage;
    }
 
    public List<ShopCoupon> getCouponList() {
        return couponList;
    }
 
    public void setCouponList(List<ShopCoupon> couponList) {
        this.couponList = couponList;
    }
 
    @Override
    public String toString() {
        return "OrderCouponsInfoVO{" +
                "orderMoney=" + orderMoney +
                ", commodityPrice=" + commodityPrice +
                ", postage=" + postage +
                ", couponList=" + couponList +
                '}';
    }
}