| | |
| | | @ApiModelProperty(value = "优惠券id 新增不传") |
| | | private String couponId; |
| | | |
| | | @ApiModelProperty(value="优惠券类型1.满减2.折扣3.代金4.商品5.抽奖领取") |
| | | @ApiModelProperty(value="优惠券类型1.满减2.折扣3.代金4.商品") |
| | | @NotNull(message = "优惠券类型不能为空") |
| | | @Range(min = 1, max = 4 , message = "优惠券类型错误") |
| | | private Integer couponType; |
| | | |
| | | @ApiModelProperty(value="优惠券名称") |
| | | @NotNull(message = "优惠券名称不能为空") |
| | | private String couponName; |
| | | |
| | | @ApiModelProperty(value = "发送类型1.手动领取2.指定发放") |
| | | @ApiModelProperty(value = "发送类型1.手动领取2.指定发放3.抽奖领取") |
| | | @NotNull(message = "发送类型不能为空") |
| | | private Integer sendType; |
| | | |