| | |
| | | package com.ruoyi.member.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.system.api.domain.dto.MerBaseDto; |
| | | import com.ruoyi.system.api.domain.vo.MerGoodsPriceListVo; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | private Integer sendTimeType; |
| | | |
| | | @ApiModelProperty(value="发送时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date sendTime; |
| | | |
| | | @ApiModelProperty(value = "使用范围1.全场2.指定商品") |
| | | private String useScope; |
| | | private Integer useScope; |
| | | |
| | | @ApiModelProperty(value = "有效期类型1.时间段2.领取之日起") |
| | | private Integer validTimeType; |
| | | |
| | | @ApiModelProperty(value = "有效开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date validStartTime; |
| | | |
| | | @ApiModelProperty(value = "有效截止时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date validEndTime; |
| | | |
| | | @ApiModelProperty(value = "有效期") |
| | |
| | | @ApiModelProperty(value = "关联用户集合") |
| | | private List<MgtCouponMemberListVo> relUserList; |
| | | |
| | | |
| | | @ApiModelProperty(value = "宣传海报") |
| | | private String propagandaPoster; |
| | | } |