//------------------------------------------------------------------------------ // // 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 EMISOnline.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// Sys_FunctionCode /// public partial class Sys_FunctionCode { public Sys_FunctionCode() { this.Sys_Menu = new HashSet(); this.Sys_Role = new HashSet(); } /// /// FunctionCode /// public string FunctionCode { get; set; } /// /// FunctionName /// public string FunctionName { get; set; } /// /// ParentFunctionCode /// public string ParentFunctionCode { get; set; } /// /// OrderNo /// public short OrderNo { get; set; } /// /// Sys_Menu /// public virtual HashSet Sys_Menu { get; set; } /// /// Sys_Role /// public virtual HashSet Sys_Role { get; set; } } }