//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// Sys_Menu /// public partial class Sys_Menu { public Sys_Menu() { this.Sys_ContextMenu = new HashSet(); this.Sys_ControlItemDetail = new HashSet(); this.Sys_RoleDataRange = new HashSet(); } /// /// MenuNo /// public string MenuNo { get; set; } /// /// OrderNo /// public short OrderNo { get; set; } /// /// MenuName /// public string MenuName { get; set; } /// /// Icon /// public string Icon { get; set; } /// /// Url /// public string Url { get; set; } /// /// ParentMenuNo /// public string ParentMenuNo { get; set; } /// /// Description /// public string Description { get; set; } /// /// IsTopMenu /// public bool IsTopMenu { get; set; } /// /// IsVisible /// public bool IsVisible { get; set; } /// /// IsLeaf /// public Nullable IsLeaf { get; set; } /// /// FunctionCode /// public string FunctionCode { get; set; } /// /// RecordStatus /// public int RecordStatus { get; set; } /// /// Sys_ContextMenu /// public virtual HashSet Sys_ContextMenu { get; set; } /// /// Sys_ControlItemDetail /// public virtual HashSet Sys_ControlItemDetail { get; set; } /// /// Sys_FunctionCode /// public virtual Sys_FunctionCode Sys_FunctionCode { get; set; } /// /// Sys_RoleDataRange /// public virtual HashSet Sys_RoleDataRange { get; set; } } }