123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// CF_Facultymajor
- /// </summary>
- 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>();
- }
-
- /// <summary>
- /// FacultymajorID
- /// </summary>
- public System.Guid FacultymajorID { get; set; }
- /// <summary>
- /// CollegeID
- /// </summary>
- public Nullable<System.Guid> CollegeID { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Abbreviation
- /// </summary>
- public string Abbreviation { get; set; }
- /// <summary>
- /// EnglishName
- /// </summary>
- public string EnglishName { get; set; }
- /// <summary>
- /// StandardID
- /// </summary>
- public Nullable<int> StandardID { get; set; }
- /// <summary>
- /// EducationID
- /// </summary>
- public Nullable<int> EducationID { get; set; }
- /// <summary>
- /// LearningformID
- /// </summary>
- public Nullable<int> LearningformID { get; set; }
- /// <summary>
- /// LearnSystem
- /// </summary>
- public Nullable<decimal> LearnSystem { get; set; }
- /// <summary>
- /// ScienceclassID
- /// </summary>
- public Nullable<int> ScienceclassID { get; set; }
- /// <summary>
- /// LearningstyleID
- /// </summary>
- public Nullable<int> LearningstyleID { get; set; }
- /// <summary>
- /// LearnPositionID
- /// </summary>
- public Nullable<int> LearnPositionID { get; set; }
- /// <summary>
- /// TeacherIdentification
- /// </summary>
- public string TeacherIdentification { get; set; }
- /// <summary>
- /// SetTime
- /// </summary>
- public Nullable<System.DateTime> SetTime { get; set; }
- /// <summary>
- /// Remark
- /// </summary>
- public string Remark { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// CF_College
- /// </summary>
- public virtual CF_College CF_College { get; set; }
- /// <summary>
- /// CF_Grademajor
- /// </summary>
- public virtual HashSet<CF_Grademajor> CF_Grademajor { get; set; }
- /// <summary>
- /// DQP_SOCTemplate
- /// </summary>
- public virtual HashSet<DQP_SOCTemplate> DQP_SOCTemplate { get; set; }
- /// <summary>
- /// EX_ExaminationSubjectCollegeControl
- /// </summary>
- public virtual HashSet<EX_ExaminationSubjectCollegeControl> EX_ExaminationSubjectCollegeControl { get; set; }
- /// <summary>
- /// EX_ExaminationSubjectCountLimit
- /// </summary>
- public virtual HashSet<EX_ExaminationSubjectCountLimit> EX_ExaminationSubjectCountLimit { get; set; }
- /// <summary>
- /// HB_FacultymajorStudentCount
- /// </summary>
- public virtual HashSet<HB_FacultymajorStudentCount> HB_FacultymajorStudentCount { get; set; }
- }
- }
|