1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ibeetl.admin.console.web.query;
|
| import com.ibeetl.admin.core.annotation.Query;
| import com.ibeetl.admin.core.web.query.PageParam;
| import lombok.Data;
|
| @Data
| public class SettingMoneyQuery extends PageParam {
|
| // 开始时间
| @Query(name = "开始时间", display = true,fuzzy=true)
| String StartTime;
| // 结束时间
| @Query(name = "结束时间", display = true,fuzzy=true)
| String endTime;
| // 时间间隔
| @Query(name = "间隔时间", display = true,fuzzy=true)
| String timeInterval;
| // 代丢价格
| @Query(name = "代丢价格", display = true,fuzzy=true)
| String agentPrice;
|
| }
|
|