陶杰
2024-09-02 dde5cf11c3ca6bddbd6aaeccf4e69d4f96ae8a45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.mzl.flower.dto.request.coupon;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
public class QueryCouponRecordDTO {
 
 
    @ApiModelProperty(value = "id")
    private String id;
 
    @ApiModelProperty(value = "优惠券名称")
    private String name;
 
    @ApiModelProperty(value = "优惠券类型")
    private String couponDiscountType;
 
    @ApiModelProperty(value = "订单号")
    private String orderNo;
 
    @ApiModelProperty(value = "用户id/店铺名称")
    private String keyword;
 
    @ApiModelProperty(value = "联系方式")
    private String tel;
 
    @ApiModelProperty(value = "领取渠道")
    private String getType;
 
    @ApiModelProperty(value = "状态")
    private String status;
 
    @ApiModelProperty(value = "领取用户类型-全部用户,指定用户")
    private String getUserType;
 
}