You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
912 B
46 lines
912 B
package com.ruoyi.system.domain; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
/** |
|
* 角色和菜单关联 sys_role_menu |
|
* |
|
* @author ruoyi |
|
*/ |
|
public class SysRoleMenu |
|
{ |
|
/** 角色ID */ |
|
private Long roleId; |
|
|
|
/** 菜单ID */ |
|
private Long menuId; |
|
|
|
public Long getRoleId() |
|
{ |
|
return roleId; |
|
} |
|
|
|
public void setRoleId(Long roleId) |
|
{ |
|
this.roleId = roleId; |
|
} |
|
|
|
public Long getMenuId() |
|
{ |
|
return menuId; |
|
} |
|
|
|
public void setMenuId(Long menuId) |
|
{ |
|
this.menuId = menuId; |
|
} |
|
|
|
@Override |
|
public String toString() { |
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
.append("roleId", getRoleId()) |
|
.append("menuId", getMenuId()) |
|
.toString(); |
|
} |
|
}
|
|
|