| 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; | 
|     } | 
| } |