1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.lunhan.water.entity.search;
|
| import lombok.Data;
|
| import com.lunhan.water.entity.dto.SearchBasicDTO;
|
| /**
| * 充值记录
| * @author lin.liu
| */
| @Data
| public class SearchRechargeRecords extends SearchBasicDTO {
| /**
| * 日期筛选类型(1当日 2本周 3本月 4本年)
| */
| private Integer dateType;
| /**
| * 用户id
| */
| private Long userId;
| }
|
|