futian.liu
2023-12-13 2d02dee9812ff906c0a5db97a5d04154bf54fa3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
import lombok.Data;
 
@Data
public class FinSysTenantUserSearchParam extends ParamRequest {
 
    // 用户姓名
    private String userName;
 
    private String userCode;
 
    // 供应商id
    private Long supplierId;
 
    private Integer status;
 
    private Long projectId;
 
    // 用户手机号
    private String userPhone;
 
    // 区域号
    private long tenantCode;
 
    // 1 是财政用户 2 是客服
    private Integer type;
 
    // 绑定CTI客服
    private Integer ctiStatus;
 
    private Long startTime;
 
    private Long endTime;
 
    private Long userId;
 
    private Long sysUserId;
 
    private Integer pageNum;
 
    private Integer pageSize;
}