| | |
| | | package com.ruoyi.goods.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author jqs34 |
| | |
| | | private String goodsTag; |
| | | |
| | | @ApiModelProperty(value = "商品调理问题") |
| | | private BigDecimal goodsNurses; |
| | | private String goodsNurses; |
| | | |
| | | @ApiModelProperty(value = "商品售价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal salesPrice; |
| | | |
| | | @ApiModelProperty(value = "商品活动价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal activityPrice; |
| | | |
| | | @ApiModelProperty(value = "活动销售数量") |
| | |
| | | private Integer salesNumber; |
| | | |
| | | @ApiModelProperty(value = "已售比例") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal salesPercent; |
| | | |
| | | @ApiModelProperty(value = "结束时间戳") |
| | | private long timestamp; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private Date startTime; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private Date endTime; |
| | | |
| | | @ApiModelProperty(value = "限购标记0否1是") |
| | | private Integer purchaseLimitationFlag; |
| | | |
| | | @ApiModelProperty(value = "限购数量") |
| | | private Integer limitNumber; |
| | | |
| | | @ApiModelProperty(value = "还可以购买数量") |
| | | private Integer availableBuyNum; |
| | | |
| | | @ApiModelProperty(value = "活动id") |
| | | private String activityId; |
| | | } |