123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- //------------------------------------------------------------------------------
- // <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_Schoolyear
- /// </summary>
- public partial class CF_Schoolyear
- {
- public CF_Schoolyear()
- {
- this.CF_Grademajor = new HashSet<CF_Grademajor>();
- this.CF_Recruitstudents = new HashSet<CF_Recruitstudents>();
- this.ER_CertisfierDistribute = new HashSet<ER_CertisfierDistribute>();
- this.ER_ProjectScore = new HashSet<ER_ProjectScore>();
- this.EX_ExaminationBatch = new HashSet<EX_ExaminationBatch>();
- }
-
- /// <summary>
- /// SchoolyearID
- /// </summary>
- public System.Guid SchoolyearID { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// Years
- /// </summary>
- public int Years { get; set; }
- /// <summary>
- /// SchoolcodeID
- /// </summary>
- public int SchoolcodeID { get; set; }
- /// <summary>
- /// WeeksNum
- /// </summary>
- public int WeeksNum { get; set; }
- /// <summary>
- /// FirstWeek
- /// </summary>
- public System.DateTime FirstWeek { get; set; }
- /// <summary>
- /// IsCurrent
- /// </summary>
- public bool IsCurrent { get; set; }
- /// <summary>
- /// WeekDays
- /// </summary>
- public int WeekDays { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
- /// <summary>
- /// Value
- /// </summary>
- public Nullable<int> Value { get; set; }
-
- /// <summary>
- /// CF_Grademajor
- /// </summary>
- public virtual HashSet<CF_Grademajor> CF_Grademajor { get; set; }
- /// <summary>
- /// CF_Recruitstudents
- /// </summary>
- public virtual HashSet<CF_Recruitstudents> CF_Recruitstudents { get; set; }
- /// <summary>
- /// ER_CertisfierDistribute
- /// </summary>
- public virtual HashSet<ER_CertisfierDistribute> ER_CertisfierDistribute { get; set; }
- /// <summary>
- /// ER_ProjectScore
- /// </summary>
- public virtual HashSet<ER_ProjectScore> ER_ProjectScore { get; set; }
- /// <summary>
- /// EX_ExaminationBatch
- /// </summary>
- public virtual HashSet<EX_ExaminationBatch> EX_ExaminationBatch { get; set; }
- }
- }
|