123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_Facultymajor
- {
- public CF_Facultymajor()
- {
- this.CF_Grademajor = new HashSet<CF_Grademajor>();
- this.DQP_SOCTemplate = new HashSet<DQP_SOCTemplate>();
- this.EX_ExaminationSubjectCollegeControl = new HashSet<EX_ExaminationSubjectCollegeControl>();
- this.EX_ExaminationSubjectCountLimit = new HashSet<EX_ExaminationSubjectCountLimit>();
- this.HB_FacultymajorStudentCount = new HashSet<HB_FacultymajorStudentCount>();
- }
-
-
-
-
- public System.Guid FacultymajorID { get; set; }
-
-
-
- public Nullable<System.Guid> CollegeID { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Abbreviation { get; set; }
-
-
-
- public string EnglishName { get; set; }
-
-
-
- public Nullable<int> StandardID { get; set; }
-
-
-
- public Nullable<int> EducationID { get; set; }
-
-
-
- public Nullable<int> LearningformID { get; set; }
-
-
-
- public Nullable<decimal> LearnSystem { get; set; }
-
-
-
- public Nullable<int> ScienceclassID { get; set; }
-
-
-
- public Nullable<int> LearningstyleID { get; set; }
-
-
-
- public Nullable<int> LearnPositionID { get; set; }
-
-
-
- public string TeacherIdentification { get; set; }
-
-
-
- public Nullable<System.DateTime> SetTime { get; set; }
-
-
-
- public string Remark { 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_College CF_College { get; set; }
-
-
-
- public virtual HashSet<CF_Grademajor> CF_Grademajor { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCTemplate> DQP_SOCTemplate { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationSubjectCollegeControl> EX_ExaminationSubjectCollegeControl { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationSubjectCountLimit> EX_ExaminationSubjectCountLimit { get; set; }
-
-
-
- public virtual HashSet<HB_FacultymajorStudentCount> HB_FacultymajorStudentCount { get; set; }
- }
- }
|