liujie
2023-10-25 5234b3a5f970969cc15b05c52ee9e31d6885d1d5
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
33
34
package com.dsh.course.feignClient.activity.model;
 
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Map;
 
@Data
public class CouponExamineListSearch {
 
 
    @ApiModelProperty(value = "后台登录用户id")
    private Integer loginId;
    @ApiModelProperty(value = "优惠券名称")
    private String name;
 
    @ApiModelProperty(value = "优惠券类型")
    private Integer type;
 
    @ApiModelProperty(value = "发放方式")
    private Integer distributionMethod;
 
    @ApiModelProperty(value = "用户人群")
    private Integer userPopulation;
 
    @ApiModelProperty(value = "审核状态")
    private Integer auditStatus;
 
    private Page<Map<String, Object>> page;
 
 
}