KKSU
2024-12-17 288e2a2ca2e7c2f7158507174a42f8a417380d23
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
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "ApiGoChargeDto", description = "参数接收类")
public class ApiGoChargeDto {
 
    @NotNull(message = "请选择地址")
    @ApiModelProperty(value = "地址ID", example = "123456")
    private Long addressId;
 
    @NotNull(message = "请选择会员")
    @ApiModelProperty(value = "会员ID", example = "123456")
    private Long runVipId;
 
    @NotNull(message = "请选择数量")
    @ApiModelProperty(value = "数量", example = "123456")
    private Integer vipCnt;
 
}