xiaoyong931011
2023-09-11 7eacf711097494eefc1e922b8df5df8f159a5df6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
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;
 
}