44323
2023-12-08 2fa137fdda93862d79ef09a75603faef4f4769cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.activity.model.request;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class CouponPackageReq {
 
    @ApiModelProperty(value = "(1=满减券,2=代金券,3=体验券)")
    Integer couponType;
 
    @ApiModelProperty(value = "(1=未使用 2=已使用 3=已过期)")
    Integer useStatus;
 
}