| package com.matrix.system.shopXcx.api.vo; | 
|   | 
| import com.matrix.system.app.vo.OrderDetailAchieveItemVo; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author jyy | 
|  * @date 2020-12-23 | 
|  **/ | 
| @ApiModel(value = "ErpOrderDetailItemVo", description = "订单详情明细表") | 
| public class ErpOrderDetailItemVo { | 
|   | 
|   | 
|     @ApiModelProperty(value = "商品名称") | 
|     private String goodsName; | 
|   | 
|     @ApiModelProperty(value = "数量") | 
|     private String count; | 
|   | 
|   | 
|     @ApiModelProperty(value = "原价") | 
|     private BigDecimal price; | 
|   | 
|     @ApiModelProperty(value = "折扣价格") | 
|     private BigDecimal zkPrice; | 
|   | 
|   | 
|     public String getGoodsName() { | 
|         return goodsName; | 
|     } | 
|   | 
|     public void setGoodsName(String goodsName) { | 
|         this.goodsName = goodsName; | 
|     } | 
|   | 
|     public String getCount() { | 
|         return count; | 
|     } | 
|   | 
|     public void setCount(String count) { | 
|         this.count = count; | 
|     } | 
|   | 
|     public BigDecimal getPrice() { | 
|         return price; | 
|     } | 
|   | 
|     public void setPrice(BigDecimal price) { | 
|         this.price = price; | 
|     } | 
|   | 
|     public BigDecimal getZkPrice() { | 
|         return zkPrice; | 
|     } | 
|   | 
|     public void setZkPrice(BigDecimal zkPrice) { | 
|         this.zkPrice = zkPrice; | 
|     } | 
| } |