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
package com.mzl.flower.dto.request.coupon;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
@ApiModel("App活动优惠券实体类")
public class QueryMineCouponRecordDTO {
 
 
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id",hidden = true)
    private String userId;
 
    /**
     * 商户ID
     */
    @ApiModelProperty(value = "商户ID",hidden = true)
    private Long customerId;
 
    /**
     * 状态(coupon_record_status)未使用、已使用、已过期
     */
    @ApiModelProperty(value = "状态(coupon_record_status)",hidden = true)
    private String status;
 
 
}