| package com.xzx.gc.entity; | 
|   | 
| import com.xzx.gc.common.entity.BaseEntity; | 
| import lombok.Data; | 
|   | 
| import javax.persistence.Table; | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @Table(name = "xzx_score_goods_sku") | 
| public class ScoreGoodsSku extends BaseEntity { | 
|   | 
|     private String name; | 
|   | 
|     private BigDecimal originalPrice; | 
|   | 
|     private BigDecimal presentPrice; | 
|   | 
|     private Integer stock; | 
|   | 
|     private Integer quantity; | 
|   | 
|     private Long styleId; | 
|   | 
|     private Long goodsId; | 
| } |