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
package com.sinata.rest.modular.mall.controller.body;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 商品购物车-请求
 * </p>
 *
 * @author goku
 * @since 2023-03-10
 */
@Data
@ApiModel(value = "商品购物车-请求")
public class BodyMallGoodsCart {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "购物车ID(编辑必填)")
    private Integer id;
 
    @ApiModelProperty(value = "门店ID")
    private Integer merchantId;
 
    @ApiModelProperty(value = "用户ID")
    private Integer userId;
 
    @ApiModelProperty(value = "商品ID")
    private Integer goodsId;
 
    @ApiModelProperty(value = "商品skuId")
    private Integer goodsSkuId;
 
    @ApiModelProperty(value = "数量")
    private Integer number;
 
}