| | |
| | | package com.ruoyi.system.api.domain.dto; |
| | | |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "优惠卷对象", description = "优惠卷对象") |
| | | public class CouponMemberDTO extends BasePage { |
| | | |
| | | @ApiModelProperty(value = "优惠卷id") |
| | |
| | | @ApiModelProperty(value = "会员id") |
| | | private Long memberId; |
| | | |
| | | @ApiModelProperty(value = "优惠券状态-1删除0已过期1已领取2已使用") |
| | | @ApiModelProperty(value = "优惠券状态 0:未使用, 1:已使用 2:已过期") |
| | | private Integer couponStatus; |
| | | } |