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