luqingyang
2023-10-25 07af7bd2217050ed0df8a0c154ba1a61692adcb9
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class FinSysTenantUserSearchParam extends ParamRequest {
 
    // 用户姓名
    private String userName;
 
    private String userCode;
 
    // 供应商id
    private Long supplierId;
 
    private Integer status;
 
    private Long projectId;
 
 
   private String roleId;
 
    // 用户手机号
    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;
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getSysUserId() {
        return sysUserId;
    }
 
    public void setSysUserId(Long sysUserId) {
        this.sysUserId = sysUserId;
    }
 
    public Long getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Long startTime) {
        this.startTime = startTime;
    }
 
    public Long getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Long endTime) {
        this.endTime = endTime;
    }
 
    public Integer getCtiStatus() {
        return ctiStatus;
    }
 
    public void setCtiStatus(Integer ctiStatus) {
        this.ctiStatus = ctiStatus;
    }
 
    public Long getProjectId() {
        return projectId;
    }
 
    public void setProjectId(Long projectId) {
        this.projectId = projectId;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getRoleId() {
        return roleId;
    }
 
    public void setRoleId(String roleId) {
        this.roleId = roleId;
    }
 
    public String getUserCode() {
        return userCode;
    }
 
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
    public void setUserCode(String userCode) {
        this.userCode = userCode;
    }
 
    public long getTenantCode() {
        return tenantCode;
    }
 
    public void setTenantCode(long tenantCode) {
        this.tenantCode = tenantCode;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
 
    public Long getSupplierId() {
        return supplierId;
    }
 
    public void setSupplierId(Long supplierId) {
        this.supplierId = supplierId;
    }
}