对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.gk.firework.Domain.ProductInfo; |
| | | import com.gk.firework.Domain.SaleOrderDetailInfo; |
| | | import com.gk.firework.Domain.SaleOrderInfo; |
| | | |
| | | public class SaleDetailVo extends SaleOrderDetailInfo { |
| | | |
| | | //现在的产品信息 |
| | | private ProductInfo product; |
| | | //订单的信息 |
| | | private SaleOrderInfo saleOrderInfo; |
| | | |
| | | /** 店铺 shop **/ |
| | | private String shop; |
| | | |
| | | public ProductInfo getProduct() { |
| | | return product; |
| | | } |
| | | |
| | | public void setProduct(ProductInfo product) { |
| | | this.product = product; |
| | | } |
| | | |
| | | public SaleOrderInfo getSaleOrderInfo() { |
| | | return saleOrderInfo; |
| | | } |
| | | |
| | | public void setSaleOrderInfo(SaleOrderInfo saleOrderInfo) { |
| | | this.saleOrderInfo = saleOrderInfo; |
| | | } |
| | | |
| | | public String getShop() { |
| | | return shop; |
| | | } |
| | | |
| | | public void setShop(String shop) { |
| | | this.shop = shop; |
| | | } |
| | | } |