| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodsName; |
| | | |
| | | @ApiModelProperty(value = "商品参数") |
| | | private String goodsParameter; |
| | | |
| | | @ApiModelProperty(value = "商品介绍") |
| | | private String goodsIntrodution; |
| | | |
| | |
| | | @ApiModelProperty(value = "是否上架 1-上架 2-下架") |
| | | private Integer isSale; |
| | | |
| | | @ApiModelProperty(value = "库存") |
| | | private Integer stock; |
| | | |
| | | @ApiModelProperty(value = "销量") |
| | | private Integer volume; |
| | | |
| | | @ApiModelProperty(value = "商品类型") |
| | | private Integer goodsType; |
| | | |
| | | @ApiModelProperty(value = "积分") |
| | | private BigDecimal score; |
| | | |
| | | @ApiModelProperty(value = "是否有运费") |
| | | private Integer hasCarriage; |
| | | |
| | | @ApiModelProperty(value = "运费") |
| | | private BigDecimal carriage; |
| | | |
| | | @ApiModelProperty(value = "1-普通商品 2-套餐") |
| | | private Integer isNormal; |
| | | |
| | | @ApiModelProperty(value = "轮播图") |
| | | private List<String> images; |
| | | |
| | | @ApiModelProperty(value = "样式") |
| | | private List<GoodsDetailsStyleVo> styles; |
| | | |
| | | @ApiModelProperty(value = "评论数量") |
| | | private Integer commentCount; |
| | | } |