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
| package com.dsh.course.feignClient.activity.model;
|
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import lombok.Data;
|
| import java.util.Map;
|
| @Data
| public class CouponListOfSearch {
|
| private String name;
|
| private Integer type;
|
| private Integer distributionMethod;
|
| private Integer userPopulation;
|
| private Integer status;
|
| private Integer state;
|
| private Page<Map<String, Object>> page;
| private String cityCode;
| private Integer storeId;
|
| }
|
|