| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | private String couponId; |
| | | |
| | | @ApiModelProperty(value="优惠券类型1.满减2.折扣3.代金4.商品") |
| | | @NotNull(message = "优惠券类型不能为空") |
| | | private Integer couponType; |
| | | |
| | | @ApiModelProperty(value="优惠券名称") |
| | | @NotNull(message = "优惠券名称不能为空") |
| | | private String couponName; |
| | | |
| | | @ApiModelProperty(value = "发送类型1.手动领取2.指定发放") |
| | | @NotNull(message = "发送类型不能为空") |
| | | private Integer sendType; |
| | | |
| | | @ApiModelProperty(value = "发送对象2.全部用户3.会员用户4非会员用户5自定义") |
| | | @NotNull(message = "发送对象不能为空") |
| | | private Integer sendTarget; |
| | | |
| | | @ApiModelProperty(value="发送时间类型1立即2定时") |