rk
2025-12-15 12d724c247e4f7dcb77b3a94891ccf4d86b53cfa
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
package com.doumee.dao.web.response.goods;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import com.doumee.dao.business.model.Labels;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/24 9:21
 */
@Data
@ApiModel("购物车商品信息列表返回类")
public class CartGoodsResponse {
 
    @ApiModelProperty(value = "主键")
    private Integer goodsId;
 
    @ApiModelProperty(value = "购物车商品主键")
    private Integer shopCartId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "规格名称")
    private String skuName;
 
    @ApiModelProperty(value = "商品数量")
    private Integer num;
 
    @ApiModelProperty(value = "商品价格")
    private BigDecimal price;
 
    @ApiModelProperty(value = "状态0上架 1下架")
    private Integer status;
 
    @ApiModelProperty(value = "附件图片")
    private String imgUrl;
 
    @ApiModelProperty(value = "sku组合编码")
    private String goodsSkuId;
 
 
}