| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.ruoyi.common.core.enums.StartStatusEnum; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @Data |
| | | public class HomeGoodsSeckillInfoVO { |
| | | @ApiModelProperty(value = "秒杀商品id") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Long goodsSkuId; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String skuName; |
| | | |
| | | @ApiModelProperty(value = "商品年份") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String years; |
| | | |
| | | @ApiModelProperty(value = "商品分类") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String category; |
| | | |
| | | @ApiModelProperty(value = "商品系列") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String series; |
| | | |
| | | @ApiModelProperty(value = "商品品牌") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String brand; |
| | | |
| | | @ApiModelProperty(value = "商品香型") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String flavorType; |
| | | |
| | | @ApiModelProperty(value = "商品价格") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal price; |
| | | |
| | | @ApiModelProperty(value = "已售数量") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer soldQuantity; |
| | | |
| | | @ApiModelProperty(value = "单位") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String unit; |
| | | |
| | | @ApiModelProperty(value = "规格") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String spec; |
| | | |
| | | @ApiModelProperty(value = "规格单位") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String specUnit; |
| | | |
| | | @ApiModelProperty(value = "封面图") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String coverPic; |
| | | |
| | | @ApiModelProperty(value = "详情图,不超过五张图片") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String album; |
| | | |
| | | @ApiModelProperty(value = "分享标题") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String shareTitle; |
| | | |
| | | @ApiModelProperty(value = "分享图片") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String sharePic; |
| | | |
| | | @ApiModelProperty(value = "商品描述") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "商品说明") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String detail; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "限购数量") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer limitNumber; |
| | | |
| | | @ApiModelProperty(value = "秒杀价格") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal seckillPrice; |
| | | |
| | | @ApiModelProperty(value = "秒杀开始时间") |
| | |
| | | private LocalDateTime endTime; |
| | | |
| | | @ApiModelProperty(value = "开始状态 0=未开始 1= 已开始 2=已结束") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private StartStatusEnum startStatus; |
| | | } |