123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_Role
- {
- public Sys_Role()
- {
- this.Sys_RoleDataRange = new HashSet<Sys_RoleDataRange>();
- this.Sys_Announcement = new HashSet<Sys_Announcement>();
- this.Sys_FunctionCode = new HashSet<Sys_FunctionCode>();
- this.Sys_User = new HashSet<Sys_User>();
- }
-
-
-
-
- public System.Guid RoleID { get; set; }
-
-
-
- public Nullable<int> TypeID { get; set; }
-
-
-
- public string RoleName { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool IsSystemRole { get; set; }
-
-
-
- public Nullable<int> SystemRoleType { get; set; }
-
-
-
- public Nullable<int> DefaultDataRange { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
- public Nullable<int> OrderNo { get; set; }
-
-
-
-
- public virtual CF_StudentRole CF_StudentRole { get; set; }
-
-
-
- public virtual HashSet<Sys_RoleDataRange> Sys_RoleDataRange { get; set; }
-
-
-
- public virtual HashSet<Sys_Announcement> Sys_Announcement { get; set; }
-
-
-
- public virtual HashSet<Sys_FunctionCode> Sys_FunctionCode { get; set; }
-
-
-
- public virtual HashSet<Sys_User> Sys_User { get; set; }
- }
- }
|