jyy
2021-03-19 c16b9ffceac828840ef7ebc4827612d17906704a
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
package com.matrix.system.shopXcx.api.vo;
 
import java.math.BigDecimal;
 
/**
 * 购物车账单信息
 */
public class ShopCartBillVo {
    /**
     * 优惠后总金额
     */
    private BigDecimal billTotal = BigDecimal.ZERO;
    /**
     * 选中产品数量
     */
    private Integer selectCount = 0;
    /**
     * 购物车总数
     */
    private Integer cartCount = 0;
    /**
     * 满减活动优惠金额(不含优惠券)
     */
    private BigDecimal billCouponTotal = BigDecimal.ZERO;
    /**
     * 未优惠之前的总金额
     */
    private BigDecimal srcTotal = BigDecimal.ZERO;
    /**
     * 抵用积分
     */
    private BigDecimal scorePay = BigDecimal.ZERO;
 
    public BigDecimal getScorePay() {
        return scorePay;
    }
 
    public void setScorePay(BigDecimal scorePay) {
        this.scorePay = scorePay;
    }
 
    public BigDecimal getBillTotal() {
        return billTotal;
    }
 
    public void setBillTotal(BigDecimal billTotal) {
        this.billTotal = billTotal;
    }
 
    public Integer getSelectCount() {
        return selectCount;
    }
 
    public void setSelectCount(Integer selectCount) {
        this.selectCount = selectCount;
    }
 
    public Integer getCartCount() {
        return cartCount;
    }
 
    public void setCartCount(Integer cartCount) {
        this.cartCount = cartCount;
    }
 
    public BigDecimal getBillCouponTotal() {
        return billCouponTotal;
    }
 
    public void setBillCouponTotal(BigDecimal billCouponTotal) {
        this.billCouponTotal = billCouponTotal;
    }
 
    public BigDecimal getSrcTotal() {
        return srcTotal;
    }
 
    public void setSrcTotal(BigDecimal srcTotal) {
        this.srcTotal = srcTotal;
    }
}