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; } }