|  |  |  | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | private Integer skuVolume; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal originalPrice; | 
|---|
|  |  |  | private BigDecimal levelOnePrice; | 
|---|
|  |  |  | private BigDecimal levelTwoPrice; | 
|---|
|  |  |  | private BigDecimal levelThreePrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal presentPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal costPrice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long styleId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long goodsId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String goodsName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String styleName; | 
|---|
|  |  |  | //重量 | 
|---|
|  |  |  | private BigDecimal goodsWeight; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private BigDecimal skuGoodsWeight; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String sample; | 
|---|
|  |  |  | } | 
|---|