| | |
| | | package com.ruoyi.member.domain.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.system.api.domain.dto.MgtBaseDto; |
| | | 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.全部用户3.会员用户4非会员用户5自定义") |
| | | @ApiModelProperty(value = "发送类型1.手动领取2.指定发放") |
| | | @NotNull(message = "发送类型不能为空") |
| | | private Integer sendType; |
| | | |
| | | @ApiModelProperty(value = "发送对象2.全部用户3.会员用户4非会员用户5自定义") |
| | | @NotNull(message = "发送对象不能为空") |
| | | private Integer sendTarget; |
| | | |
| | | @ApiModelProperty(value="发送时间类型1立即2定时") |
| | | private Integer sendTimeType; |
| | | |
| | | @ApiModelProperty(value="发送时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date sendTime; |
| | | |
| | | @ApiModelProperty(value = "使用范围1.全场2.指定商品") |
| | |
| | | |
| | | @ApiModelProperty(value = "关联用户id集合") |
| | | private List<Long> relUserIdList; |
| | | |
| | | @ApiModelProperty(value = "宣传海报") |
| | | private String propagandaPoster; |
| | | |
| | | @ApiModelProperty(value = "发放限制数量") |
| | | private Integer sendLimitNumber; |
| | | |
| | | @ApiModelProperty(value = "发放限制0否1是") |
| | | private Integer sendLimitFlag; |
| | | |
| | | @ApiModelProperty(value = "领取限制数量 0为不限") |
| | | private Integer limitNumber; |
| | | } |