Administrator
yesterday 2fb72d56082e2ee19aa187707751dd0dacd34f4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package cc.mrbird.febs.mall.dto.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.List;
 
@Data
@ApiModel(value = "ApiClothesOrderInfoDto", description = "参数")
public class ApiClothesOrderInfoDto {
 
    @NotNull(message = "参数不能为空")
    @ApiModelProperty(value = "地址ID", example = "1")
    private Long addressId;
 
    @NotNull(message = "参数不能为空")
    @ApiModelProperty(value = "类型ID", example = "1")
    private Long typeId;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "快递费")
    private BigDecimal deliveryAmount;
 
    @ApiModelProperty(value = "会员优惠卷ID")
    private Long memberCouponId;
 
    @NotNull(message = "数量不能为空")
    @ApiModelProperty(value = "数量", example = "2")
    private Integer cnt;
 
    @ApiModelProperty(value = "商品明细")
    private List<ApiClothesOrderItemInfoDto> items;
 
}