fwq
2022-11-01 8d55f4a226f42dba4598ab5d98f266cd7a4952b0
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;
}