| | |
| | | package com.ruoyi.goods.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class AppGoodsInfoVo { |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | private String goodsId; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "商品简介") |
| | | private String goodsIntroduction; |
| | | |
| | | @ApiModelProperty(value = "商品图片") |
| | | private String goodsPicture; |
| | | |
| | | @ApiModelProperty(value = "商品视频") |
| | | private String goodsVideo; |
| | |
| | | private String goodsTag; |
| | | |
| | | @ApiModelProperty(value = "商品调理问题") |
| | | private BigDecimal goodsNurses; |
| | | private String goodsNurses; |
| | | |
| | | @ApiModelProperty("服务次数") |
| | | @ApiModelProperty(value="服务次数") |
| | | private Integer serviceNum; |
| | | |
| | | @ApiModelProperty(value = "商品售价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal salesPrice; |
| | | |
| | | @ApiModelProperty(value = "商品详情") |
| | |
| | | @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 = "商品活动价") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | 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 activityStartTime; |
| | | |
| | | @ApiModelProperty(value = "活动截止时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date activityDeadline; |