Pu Zhibing
8 天以前 7a4f9541331bef779a506b38a27ed5c3373c0bec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.account.api.query;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("管理后台 优惠券兑换记录")
public class ExchangeRecordGoodsQuery extends BasePage {
    @ApiModelProperty(value = "用户手机号")
    private String phone;
    @ApiModelProperty(value = "状态1未使用 2已使用 3已过期 4已取消")
    private Integer status;
    @ApiModelProperty(value = "优惠券id",required = true)
    private Integer couponId;
}