gongzuming
2024-09-19 a768dc3daa04d35fedfbe75c0a59b9b2545b85c4
src/main/java/com/mzl/flower/dto/request/coupon/QueryCouponRecordDTO.java
对比新文件
@@ -0,0 +1,44 @@
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;
}