123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_User
- {
- public Sys_User()
- {
- this.EX_ExaminationRegistrationConfirm = new HashSet<EX_ExaminationRegistrationConfirm>();
- this.EX_Receipt = new HashSet<EX_Receipt>();
- this.TestOperate = new HashSet<TestOperate>();
- this.Sys_Announcement = new HashSet<Sys_Announcement>();
- this.Sys_Role = new HashSet<Sys_Role>();
- }
-
-
-
-
- public System.Guid UserID { get; set; }
-
-
-
- public string LoginID { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
- public string Name { 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 virtual CF_Staff CF_Staff { get; set; }
-
-
-
- public virtual CF_Student CF_Student { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationRegistrationConfirm> EX_ExaminationRegistrationConfirm { get; set; }
-
-
-
- public virtual HashSet<EX_Receipt> EX_Receipt { get; set; }
-
-
-
- public virtual Sys_MailVerifyCode Sys_MailVerifyCode { get; set; }
-
-
-
- public virtual HashSet<TestOperate> TestOperate { get; set; }
-
-
-
- public virtual HashSet<Sys_Announcement> Sys_Announcement { get; set; }
-
-
-
- public virtual HashSet<Sys_Role> Sys_Role { get; set; }
- }
- }
|