KKSU
2023-12-21 c9289c6477ea92fce66d191b4b2a41a9bad22b05
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "ApiAddOrderDto", description = "新增订单接口参数接收类")
public class ApiAddOrderDto {
 
    @ApiModelProperty(value = "订单结算方式 1:普通结算 2:会员结算", example = "1")
    private Integer type;
 
    @ApiModelProperty(value = "会员ID", example = "1")
    private Long memberId;
 
    @ApiModelProperty(value = "商品明细")
    private List<ApiAddOrderItemDto> items;
 
}