1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //------------------------------------------------------------------------------
- // <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_GrademinorApplication
- /// </summary>
- public partial class CF_GrademinorApplication
- {
- public CF_GrademinorApplication()
- {
- this.CF_Grademinor = new HashSet<CF_Grademinor>();
- this.EM_MinorPlanApplication = new HashSet<EM_MinorPlanApplication>();
- }
-
- /// <summary>
- /// GradeMinorApplicationID
- /// </summary>
- public System.Guid GradeMinorApplicationID { get; set; }
- /// <summary>
- /// SchoolyearID
- /// </summary>
- public Nullable<System.Guid> SchoolyearID { get; set; }
- /// <summary>
- /// CollegeID
- /// </summary>
- public Nullable<System.Guid> CollegeID { get; set; }
- /// <summary>
- /// YearID
- /// </summary>
- public Nullable<int> YearID { get; set; }
- /// <summary>
- /// StandardID
- /// </summary>
- public Nullable<int> StandardID { get; set; }
- /// <summary>
- /// StudentLimit
- /// </summary>
- public Nullable<int> StudentLimit { 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_Grademinor
- /// </summary>
- public virtual HashSet<CF_Grademinor> CF_Grademinor { get; set; }
- /// <summary>
- /// CF_Schoolyear
- /// </summary>
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
- /// <summary>
- /// EM_MinorPlanApplication
- /// </summary>
- public virtual HashSet<EM_MinorPlanApplication> EM_MinorPlanApplication { get; set; }
- }
- }
|