package com.iplatform.base.pojo.role;
|
|
import com.walker.web.param.ParamRequest;
|
|
/**
|
* 角色列表查询条件。
|
* @date 2022-12-15
|
*/
|
public class RoleParam extends ParamRequest {
|
|
public long getOrgId() {
|
return orgId;
|
}
|
|
public void setOrgId(long orgId) {
|
this.orgId = orgId;
|
}
|
|
public int getStatus() {
|
return status;
|
}
|
|
public void setStatus(int status) {
|
this.status = status;
|
}
|
|
public String getRoleName() {
|
return roleName;
|
}
|
|
public void setRoleName(String roleName) {
|
this.roleName = roleName;
|
}
|
|
// 指定的根机构
|
private long orgId = 0;
|
|
private int status = -1;
|
|
private String roleName;
|
|
}
|