gongzuming
2024-09-19 a768dc3daa04d35fedfbe75c0a59b9b2545b85c4
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
package com.mzl.flower.dto.request.coupon;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
public class QueryCouponDTO {
 
 
    @ApiModelProperty(value = "id")
    private String id;
 
    @ApiModelProperty(value = "优惠券名称")
    private String name;
 
    @ApiModelProperty(value = "优惠券类型")
    private String couponDiscountType;
 
    @ApiModelProperty(value = "领取渠道")
    private String getType;
 
    @ApiModelProperty(value = "领取用户类型")
    private String getUserType;
 
    @ApiModelProperty(value = "优惠券种类(活动优惠券、用户优惠券、会员优惠券,积分优惠券)")
    private String category;
 
    @ApiModelProperty(value = "优惠券状态")
    private String status;
 
 
 
}