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;
| }
|
|