12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_ExecutablePlanProfile
- {
-
-
-
- public System.Guid ExecutablePlanID { get; set; }
-
-
-
- public Nullable<bool> IsSpecialtycore { get; set; }
-
-
-
- public Nullable<bool> IsCooperation { get; set; }
-
-
-
- public Nullable<bool> IsRequired { get; set; }
-
-
-
- public Nullable<bool> IsElective { get; set; }
-
-
-
- public Nullable<bool> IsNetworkCourse { get; set; }
-
-
-
- public Nullable<bool> IsMainCourse { get; set; }
-
-
-
- public Nullable<int> CourseFineID { get; set; }
-
-
-
- public Nullable<int> PracticeTypeID { get; set; }
-
-
-
- public Nullable<int> TeachinglanguageID { get; set; }
-
-
-
- public Nullable<int> ExaminationModeID { 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 EM_ExecutablePlan EM_ExecutablePlan { get; set; }
- }
- }
|