mitao
2024-09-21 f44e4d609e7efaed9eac545137970b1e334f8106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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")
    private Long id;
 
    @ApiModelProperty(value = "会员id")
    private  Long memberId;
 
    @ApiModelProperty(value = "优惠券状态 0:未使用, 1:已使用 2:已过期")
    private Integer couponStatus;
}