| | |
| | | |
| | | /** |
| | | * 菜单权限表 sys_menu |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | public class SysMenu extends BaseEntity |
| | |
| | | |
| | | /** 菜单图标 */ |
| | | private String icon; |
| | | |
| | | /** 是否可以选择仅看我, 0:否, 1:是 */ |
| | | private Integer isRersonalButton; |
| | | |
| | | |
| | | /** 仅看我, 0:否, 1:是 */ |
| | | private Integer isRersonal; |
| | | |
| | | /** 子菜单 */ |
| | | private List<SysMenu> children = new ArrayList<SysMenu>(); |
| | |
| | | this.icon = icon; |
| | | } |
| | | |
| | | public Integer getIsRersonalButton() |
| | | { |
| | | return isRersonalButton; |
| | | } |
| | | |
| | | public void setIsRersonalButton(Integer isRersonalButton) |
| | | { |
| | | this.isRersonalButton = isRersonalButton; |
| | | } |
| | | |
| | | public Integer getIsRersonal() |
| | | { |
| | | return isRersonal; |
| | | } |
| | | |
| | | public void setIsRersonal(Integer isRersonal) |
| | | { |
| | | this.isRersonal = isRersonal; |
| | | } |
| | | |
| | | public List<SysMenu> getChildren() |
| | | { |
| | | return children; |
| | |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("remark", getRemark()) |
| | | .append("isRersonalButton", getIsRersonalButton()) |
| | | .toString(); |
| | | } |
| | | } |