123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EX_ExaminationSubject
- {
- public EX_ExaminationSubject()
- {
- this.ER_DegreeForeignLanguage = new HashSet<ER_DegreeForeignLanguage>();
- this.ER_LevelScore = new HashSet<ER_LevelScore>();
- this.ER_LevelSetting = new HashSet<ER_LevelSetting>();
- this.EX_ExaminationOpenControl = new HashSet<EX_ExaminationOpenControl>();
- this.EX_ExaminationRegistration = new HashSet<EX_ExaminationRegistration>();
- this.EX_ExaminationSubjectCollegeControl = new HashSet<EX_ExaminationSubjectCollegeControl>();
- }
-
-
-
-
- public System.Guid ExaminationSubjectID { get; set; }
-
-
-
- public Nullable<System.Guid> ExaminationTypeID { get; set; }
-
-
-
- public Nullable<System.Guid> SchoolyearID { get; set; }
-
-
-
- public Nullable<int> ExaminationFormID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public Nullable<System.Guid> PreposeSubjectID { get; set; }
-
-
-
- public Nullable<decimal> PreposeScoreLimit { get; set; }
-
-
-
- public Nullable<System.DateTime> ExaminationDate { get; set; }
-
-
-
- public Nullable<int> PeopleNumLimit { get; set; }
-
-
-
- public Nullable<decimal> Cost { get; set; }
-
-
-
- public string Remark { 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; }
-
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual HashSet<ER_DegreeForeignLanguage> ER_DegreeForeignLanguage { get; set; }
-
-
-
- public virtual HashSet<ER_LevelScore> ER_LevelScore { get; set; }
-
-
-
- public virtual HashSet<ER_LevelSetting> ER_LevelSetting { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationOpenControl> EX_ExaminationOpenControl { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationRegistration> EX_ExaminationRegistration { get; set; }
-
-
-
- public virtual EX_ExaminationType EX_ExaminationType { get; set; }
-
-
-
- public virtual HashSet<EX_ExaminationSubjectCollegeControl> EX_ExaminationSubjectCollegeControl { get; set; }
- }
- }
|