Administrator
6 days ago 6e3fcdbde6ad62832753ddc8d3e1429f29ea58ee
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
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "CollectionListVo", description = "会员收藏列表返回参数类")
public class CollectionListVo {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "商品ID")
    private Long goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "缩略图")
    private String thumb;
 
    @ApiModelProperty(value = "价格")
    private String presentPrice;
 
    @ApiModelProperty(value = "上下架 2-下架")
    private Integer isSale;
}