package com.fr.plugin.decision.role.auth; import java.io.Serializable; /** * @author Zed * @version 10.0 * Created by Zed on 2020/4/29 */ public class RequestBean implements Serializable { private static final long serialVersionUID = -987496184258324246L; private String roleType; private String roleId; private String keyword; private int authType; private int authValue; public RequestBean() { } public String getRoleType() { return roleType; } public void setRoleType(String roleType) { this.roleType = roleType; } public String getRoleId() { return roleId; } public void setRoleId(String roleId) { this.roleId = roleId; } public String getKeyword() { return keyword; } public void setKeyword(String keyword) { this.keyword = keyword; } public int getAuthType() { return authType; } public void setAuthType(int authType) { this.authType = authType; } public int getAuthValue() { return authValue; } public void setAuthValue(int authValue) { this.authValue = authValue; } }