| | |
| | | package com.ruoyi.goods.controller.management.vo; |
| | | |
| | | import com.ruoyi.common.core.enums.ListingStatusEnum; |
| | | import com.ruoyi.common.core.enums.StartStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value = "秒杀价格") |
| | | private BigDecimal seckillPrice; |
| | | |
| | | @ApiModelProperty(value = "商品库存") |
| | | private Integer goodsSkuStock; |
| | | |
| | | @ApiModelProperty(value = "已售数量") |
| | | private Integer soldQuantity; |
| | | |
| | |
| | | @ApiModelProperty(value = "开始状态 0=未开始 1= 已开始 2=已结束") |
| | | private StartStatusEnum startStatus; |
| | | |
| | | @ApiModelProperty(value = "上架状态 0=已上架 1=已下架") |
| | | private ListingStatusEnum listingStatus; |
| | | |
| | | @ApiModelProperty(value = "已购会员数") |
| | | private Integer numberOfPurchasedMembers; |
| | | } |