1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_StudentRole
- {
-
-
-
- public System.Guid RoleID { get; set; }
-
-
-
- public Nullable<int> StudentType { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
- }
- }
|