DESKTOP-71BH0QO\L、ming
2021-04-17 f721ee13dc5f95f607bb25b09f73cae6a7123ed9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.panzhihua.common.model.dtos.shop;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther lyq
 * @create 2021-04-14 15:02:14
 * @describe 购物车修改
 */
@Data
@ApiModel("购物车修改")
public class ComShopEditNubCartDTO {
 
    @ApiModelProperty(value = "购物车id",required = true)
    private Long cartId;
 
    @ApiModelProperty(value = "购物车商品数量",required = true)
    private Integer number;
}