fwq
2023-09-11 872b0092824893de51fa5ee27f54e0a91e2a7b58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.hz.his.dto.coupon;
 
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
/**
 * 优惠券参数
 * @author fwq
 */
@Data
public class CouponListDetailDto extends PageDto {
    /**会员等级*/
    private String userLevel;
    /**是否使用*/
    private Integer isUse;
    /**平台类型*/
    private String couponId;
}