123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class DQP_SOCTemplate
- {
- public DQP_SOCTemplate()
- {
- this.DQP_SOCTemplateDetail = new HashSet<DQP_SOCTemplateDetail>();
- }
-
-
-
-
- public System.Guid SOCTemplateID { get; set; }
-
-
-
- public Nullable<System.Guid> FacultymajorID { get; set; }
-
-
-
- public Nullable<System.Guid> CoursematerialID { get; set; }
-
-
-
- public Nullable<int> HandleModeID { get; set; }
-
-
-
- public Nullable<int> OptionalCourseTypeID { get; set; }
-
-
-
- public Nullable<decimal> Credit { get; set; }
-
-
-
- public Nullable<int> SchoolyearNumID { get; set; }
-
-
-
- public Nullable<int> SchoolcodeID { get; set; }
-
-
-
- public Nullable<System.Guid> DepartmentID { 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_Department CF_Department { get; set; }
-
-
-
- public virtual CF_Facultymajor CF_Facultymajor { get; set; }
-
-
-
- public virtual EM_Coursematerial EM_Coursematerial { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCTemplateDetail> DQP_SOCTemplateDetail { get; set; }
- }
- }
|