Administrator
9 days ago 7966b494ddea2c27ecec6ed031521cb889ab19f5
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 javax.validation.constraints.NotBlank;
 
@Data
@ApiModel(value = "GetCouponDto", description = "参数类")
public class GetCouponDto {
 
    private Long goodsId;
 
    @NotBlank(message = "inviteId不能为空")
    private String inviteId;
 
//    @NotBlank(message = "标识不能为空")
    @ApiModelProperty(value = "唯一标识", example = "12")
    private String couponUUID;
 
}