using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 系统菜单,数据实体对象 /// [Table("sys_menu")] [Serializable] public class MenuEntity : BaseEntity { /// /// 所属系统主键 /// public long SystemTypeId { get; set; } /// /// 父级 /// public long ParentId { get; set; } /// /// 层次 /// public int Layers { get; set; } /// /// 编码 /// public string EnCode { get; set; } /// /// 名称 /// public string FullName { get; set; } /// /// 图标 /// public string Icon { get; set; } /// /// 路由 /// public string UrlAddress { get; set; } /// /// 目标打开方式 /// public string Target { get; set; } /// /// 菜单类型(C目录 M菜单 F按钮) /// public string MenuType { get; set; } /// /// 组件路径 /// public string Component { get; set; } /// /// 设置当前选中菜单,用于新增、编辑、查看操作为单独的路由时指定选中菜单路由 /// 同时设置为隐藏时才有效 /// public string ActiveMenu { get; set; } /// /// 展开 /// public bool IsExpand { get; set; } /// /// 设置或获取 是否显示 /// public bool IsShow { get; set; } /// /// 设置或获取 是否外链 /// public bool IsFrame { get; set; } /// /// 设置或获取是否缓存 /// public bool IsCache { get; set; } /// /// 公共 /// public bool IsPublic { get; set; } /// /// 排序码 /// public long SortCode { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 有效标志 /// public bool IsEnabled { get; set; } } }