1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dsh.activity.model;
|
| import lombok.Data;
|
| /**
| * 介绍有礼列表查询Query
| */
| @Data
| public class IntroduceQuery {
| // 省
| private String province;
| // 市
| private String city;
| // 状态
| private Integer state;
| // 活动状态
| private Integer activityState;
| // 活动时间
| private String time;
|
| }
|
|