| package cc.mrbird.febs.mall.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @ApiModel(value = "MailGoodsSkuDto", description = "参数接收类") | 
| public class MailGoodsSkuDto { | 
|   | 
|     private Long id; | 
|   | 
|     private String styleName; | 
|   | 
|     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; | 
|   | 
|     private String delLog; | 
|   | 
| } |