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