1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package cc.mrbird.febs.mall.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author wzy
| * @date 2021-09-18
| **/
| @Data
| @ApiModel(value = "AddOrderDto", description = "新增订单接口参数接收类")
| public class AddOrderDto {
|
| @ApiModelProperty(value = "skuID", example = "1")
| private Long skuId;
|
| @ApiModelProperty(value = "数量", example = "2")
| private Integer cnt;
| }
|
|