mitao
2024-04-30 ab4ea7b8f10c9b66aed9c2ea161a08b25c3851a7
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
package com.sinata.rest.modular.mall.controller.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Title:
 * @Description:(商品收藏相关参数)
 * @author:chenhang
 * @date:${date}
 * @version:V1.0
 */
@Data
@ApiModel(value = "我的收藏数据-响应")
public class VoMallUserCollet extends BaseResponseVo{
 
    @ApiModelProperty(value = "收藏物品ID(编辑必填)")
    private Integer id;
 
    @ApiModelProperty(value = "用户ID")
    private Integer userId;
 
    @ApiModelProperty(value = "门店ID")
    private Integer merchantId;
 
    @ApiModelProperty(value = "商品ID")
    private Integer goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "商品列表图")
    private String goodsImage;
 
    @ApiModelProperty(value = "价格")
    private String price;
 
    @ApiModelProperty(value = "已售")
    private String buyCount;
 
}