| package com.matrix.system.shopXcx.dto; | 
|   | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * 订单优惠说明 | 
|  */ | 
| @Data | 
| public class DiscountExplain { | 
|   | 
|     /** | 
|      *账单总金额 | 
|      */ | 
|     private BigDecimal billPrice=BigDecimal.ZERO; | 
|   | 
|     /** | 
|      * 优惠券金额 | 
|      */ | 
|     private  BigDecimal couponPrice =BigDecimal.ZERO; | 
|   | 
|   | 
|     /** | 
|      * 活动满减金额 | 
|      */ | 
|     private BigDecimal activityPrice =BigDecimal.ZERO; | 
|   | 
|     /** | 
|      * 运费 | 
|      */ | 
|     private BigDecimal postage=BigDecimal.ZERO; | 
|   | 
|     /** | 
|      * 最终支付金额 | 
|      */ | 
|     private BigDecimal payPrice=BigDecimal.ZERO; | 
|     /** | 
|      * 最终支付积分 | 
|      */ | 
|     private Integer scorePay; | 
|   | 
| } |