//------------------------------------------------------------------------------ // // 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_Role /// public partial class Sys_Role { public Sys_Role() { this.Sys_RoleDataRange = new HashSet(); this.DQP_Document = new HashSet(); this.Sys_Announcement = new HashSet(); this.Sys_FunctionCode = new HashSet(); this.Sys_User = new HashSet(); } /// /// RoleID /// public System.Guid RoleID { get; set; } /// /// TypeID /// public Nullable TypeID { get; set; } /// /// RoleName /// public string RoleName { get; set; } /// /// Description /// public string Description { get; set; } /// /// IsSystemRole /// public bool IsSystemRole { get; set; } /// /// SystemRoleType /// public Nullable SystemRoleType { get; set; } /// /// DefaultDataRange /// public Nullable DefaultDataRange { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// OrderNo /// public Nullable OrderNo { get; set; } /// /// CF_StudentRole /// public virtual CF_StudentRole CF_StudentRole { get; set; } /// /// Sys_RoleDataRange /// public virtual HashSet Sys_RoleDataRange { get; set; } /// /// DQP_Document /// public virtual HashSet DQP_Document { get; set; } /// /// Sys_Announcement /// public virtual HashSet Sys_Announcement { get; set; } /// /// Sys_FunctionCode /// public virtual HashSet Sys_FunctionCode { get; set; } /// /// Sys_User /// public virtual HashSet Sys_User { get; set; } } }