| 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; | 
|   | 
|     @ApiModelProperty(value = "优惠券模版ID") | 
|     private String couponId; | 
|   | 
|     @ApiModelProperty(value = "优惠券种类") | 
|     private String category; | 
|   | 
| } |