package com.iplatform.base.pojo.log; import com.walker.web.param.ParamRequest; /** * 登录日志查询条件 * @date 2023-01-05 */ public class LoginLogParam extends ParamRequest { public String getClientType() { return clientType; } public void setClientType(String clientType) { this.clientType = clientType; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getIpaddr() { return ipaddr; } public void setIpaddr(String ipaddr) { this.ipaddr = ipaddr; } public String getBaseUserName() { return baseUserName; } public void setBaseUserName(String baseUserName) { this.baseUserName = baseUserName; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public Long getGroupDeptId() { return groupDeptId; } public void setGroupDeptId(Long groupDeptId) { this.groupDeptId = groupDeptId; } public Long getProvinceDeptId() { return provinceDeptId; } public void setProvinceDeptId(Long provinceDeptId) { this.provinceDeptId = provinceDeptId; } public Long getCityDeptId() { return cityDeptId; } public void setCityDeptId(Long cityDeptId) { this.cityDeptId = cityDeptId; } public Long getCountyDeptId() { return countyDeptId; } public void setCountyDeptId(Long countyDeptId) { this.countyDeptId = countyDeptId; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Long getSearchDeptId() { return searchDeptId; } public void setSearchDeptId(Long searchDeptId) { this.searchDeptId = searchDeptId; } public String getPsnCode() { return psnCode; } public void setPsnCode(String psnCode) { this.psnCode = psnCode; } 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; } private String ipaddr; private String userName; private String baseUserName; private String status = null; private String phone; private String psnCode; private Long groupDeptId; private Long provinceDeptId; private Long cityDeptId; private Long countyDeptId; private Long searchDeptId; private Long startTime; private Long endTime; private String clientType; }