mitao
2025-03-14 392b42c4891cf2e6beda57ab32c51598f290f4b7
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:已使用 2:已过期")
    private Integer couponStatus;
}