1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_CourseSpeedprogress
- {
-
-
-
- public System.Guid CourseSpeedprogressID { get; set; }
-
-
-
- public System.Guid CoursematerialID { get; set; }
-
-
-
- public int TeachingTypeID { get; set; }
-
-
-
- public int ClassroomTypeID { get; set; }
-
-
-
- public Nullable<int> Weekly { get; set; }
-
-
-
- public Nullable<int> Hours { get; set; }
-
-
-
- public Nullable<int> Order { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public string Remarks { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public 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; }
-
-
-
-
- public virtual Sys_User Sys_User { get; set; }
- }
- }
|