bug
jiangqs
2023-07-26 d9e75c8c09738b31c375e3b843a3f2d4927f325f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName AppShoppingCartDelDto
 * @description: TODO
 * @date 2023年05月23日
 * @version: 1.0
 */
@Data
public class AppShoppingCartDelDto {
 
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "用户id")
    private Long userId;
}