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.dsh.guns.modular.system.model;
|
| import lombok.Data;
|
| import java.math.BigDecimal;
| import java.util.Date;
|
| /**
| * 充值记录列表查询Query
| */
| @Data
| public class RechargeRecordsQuery {
| private String province;
| private String city;
| private String name;
| private String phone;
| private String time;
| /**
| * 1 = 会员 2 =非会员
| */
| private Integer type;
|
| }
|
|