| package cc.mrbird.febs.mall.entity; | 
|   | 
| import cc.mrbird.febs.common.entity.BaseEntity; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-17 | 
|  **/ | 
| @Data | 
| @TableName("mall_goods_sku") | 
| public class MallGoodsSku extends BaseEntity { | 
|   | 
|     private String skuName; | 
|   | 
|     private String skuImage; | 
|   | 
|     private Integer stock; | 
|   | 
|     private Integer skuVolume; | 
|   | 
|     private BigDecimal originalPrice; | 
|   | 
|     private BigDecimal presentPrice; | 
|   | 
|     private BigDecimal costPrice; | 
|   | 
|     private Long styleId; | 
|   | 
|     private Long goodsId; | 
|   | 
|     @TableField(exist = false) | 
|     private String goodsName; | 
|   | 
|     @TableField(exist = false) | 
|     private String styleName; | 
| } |