puzhibing
2025-01-08 b22df417e0bc423c788b013feaad686531d69eed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.ruoyi.other.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.other.api.domain.Shop;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@ApiModel(value="商品热销对象", description="热门商品")
@Data
public class GoodsVO {
 
    @ApiModelProperty(value = "商品id")
    private Integer goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "限购数量(-1不限购)")
    private Integer purchaseLimit;
 
    @ApiModelProperty(value = "类型(1=服务商品,2=单品商品)")
    private Integer type;
 
    @ApiModelProperty(value = "商品简介")
    private String introduction;
 
    @ApiModelProperty(value = "商品详情")
    private String detail;
 
    @ApiModelProperty(value = "封面图")
    private String homePagePicture;
 
    @ApiModelProperty(value = "详情图,多个逗号分隔")
    private String detailPicture;
 
 
    @ApiModelProperty(value = "现金支付(0=否,1=是)")
    private Integer cashPayment;
 
    @ApiModelProperty(value = "积分支付(0=否,1=是)")
    private Integer pointPayment;
 
    @ApiModelProperty(value = "基础积分")
    private Integer integral;
 
    @ApiModelProperty(value = "划线价")
    private BigDecimal originalPrice;
 
    @ApiModelProperty(value = "基础售价")
    private BigDecimal sellingPrice;
 
    @ApiModelProperty(value = "已售数量")
    private Integer saleNum;
 
    @ApiModelProperty(value = "门店id")
    private Integer shopId;
 
    @ApiModelProperty(value = "门店列表")
    private List<Shop> shopList;
 
 
}