| package cc.mrbird.febs.mall.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel(value = "AddMallGoodsDto", description = "参数接收类") | 
| public class AddMallGoodsDto { | 
|   | 
|     private String goodsNo; | 
|   | 
|     private String goodsName; | 
|   | 
|     private List<AddMallGoodsSkuDto> addMallGoodsSkuDtos; | 
|   | 
|     private String goodsIntrodution; | 
|   | 
|     private String unit; | 
|   | 
|     private String thumb; | 
|   | 
|     private String thumbs; | 
|   | 
|     private String goodsDetails; | 
|   | 
|     private Integer isSale; | 
|   | 
|     private String originalPrice; | 
|   | 
|     private String presentPrice; | 
|   | 
|     private Long categoryId; | 
|   | 
|     private Integer isHot; | 
| } |