rentaiming
2024-07-10 b29becf95484be48aa09e87fcc7cc19f94cf9c81
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/dto/CouponMemberDTO.java
@@ -1,10 +1,12 @@
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")
@@ -13,6 +15,6 @@
    @ApiModelProperty(value = "会员id")
    private  Long memberId;
    @ApiModelProperty(value = "优惠券状态-1删除0已过期1已领取2已使用")
    @ApiModelProperty(value = "优惠券状态 0:未使用, 1:已使用")
    private Integer couponStatus;
}