//------------------------------------------------------------------------------ // <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> /// EM_EducationMissionClassCheck /// </summary> public partial class EM_EducationMissionClassCheck { public EM_EducationMissionClassCheck() { this.Sys_User = new HashSet<Sys_User>(); } /// <summary> /// EducationMissionClassCheckID /// </summary> public System.Guid EducationMissionClassCheckID { get; set; } /// <summary> /// EducationSchedulingWeekNumID /// </summary> public Nullable<System.Guid> EducationSchedulingWeekNumID { get; set; } /// <summary> /// StudentComment /// </summary> public string StudentComment { get; set; } /// <summary> /// TeacherComment /// </summary> public string TeacherComment { get; set; } /// <summary> /// DeviceComment /// </summary> public string DeviceComment { get; set; } /// <summary> /// CheckWayID /// </summary> public Nullable<int> CheckWayID { get; set; } /// <summary> /// OpinionID /// </summary> public Nullable<int> OpinionID { get; set; } /// <summary> /// Remark /// </summary> public string Remark { 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> /// ES_EducationSchedulingWeekNum /// </summary> public virtual ES_EducationSchedulingWeekNum ES_EducationSchedulingWeekNum { get; set; } /// <summary> /// Sys_User /// </summary> public virtual HashSet<Sys_User> Sys_User { get; set; } } }