123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_ExecutablePlan
- {
-
-
-
- public System.Guid ExecutablePlanID { get; set; }
-
-
-
- public Nullable<int> SourceTypeID { get; set; }
-
-
-
- public Nullable<int> HandleModeID { get; set; }
-
-
-
- public Nullable<System.Guid> GrademajorID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<System.Guid> SpecialtyPlanID { get; set; }
-
-
-
- public string DefaultClassName { get; set; }
-
-
-
- public Nullable<bool> IsNeedMaterial { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<int> CourseStructureID { get; set; }
-
-
-
- public Nullable<int> CourseCategoryID { get; set; }
-
-
-
- public Nullable<int> CourseTypeID { get; set; }
-
-
-
- public Nullable<int> CourseQualityID { get; set; }
-
-
-
- public Nullable<int> ResultTypeID { get; set; }
-
-
-
- public string Remarks { 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; }
- }
- }
|