| | |
| | | @Data |
| | | public class AppGoodsInfoVo { |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | private String goodsId; |
| | | |
| | |
| | | @ApiModelProperty(value = "是否活动跳转0否1是") |
| | | private Integer activityFlag; |
| | | |
| | | @ApiModelProperty(value = "活动id") |
| | | private String activityId; |
| | | |
| | | @ApiModelProperty(value = "限购标记0否1是") |
| | | private Integer purchaseLimitationFlag; |
| | | |
| | | @ApiModelProperty(value = "限购数量") |
| | | private Integer limitNumber; |
| | | |
| | | @ApiModelProperty(value = "还可以购买数量") |
| | | private Integer availableBuyNum; |
| | | |
| | | @ApiModelProperty(value = "商品活动价") |
| | | private BigDecimal activityPrice; |
| | | |
| | | @ApiModelProperty(value = "售罄标记0否1是") |
| | | private Integer sellOutFlag; |
| | | |
| | | @ApiModelProperty(value = "结束时间戳") |
| | | private long timestamp; |
| | | |
| | | @ApiModelProperty(value = "活动截止时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date activityDeadline; |