fhx
2023-06-29 9ae1308afe817d5d7a49d58fb24f9fb51c485f9d
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;
}