puzhibing
2024-02-05 640ff18d2d7f4be02ddb7f8f75e899f05545eb98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.account.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 收入管理Query
 */
@Data
public class IncomeQuery {
    // 收入时间
    private String time;
    // 收入类型
    private Integer incomeType;
    // 用户姓名
    private String userName;
    // 收入金额
    private BigDecimal amount;
    // 用户ids
    private List<Integer> userIds;
    private Integer insertType;
}