liujie
2023-09-23 852681bc9257e9eaae64d027a9bc6d88f93f35b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dsh.account.model.query;
 
import lombok.Data;
 
/**
 * 充值记录列表查询Query
 */
@Data
public class RechargeRecordsQuery {
    private String province;
    private String city;
    private String name;
    private String phone;
    private String time;
    /**
     * 1 = 会员 0 =非会员
     */
    private Integer type;
 
}