//------------------------------------------------------------------------------ // <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> /// DQP_SOCDetailStudent /// </summary> public partial class DQP_SOCDetailStudent { public DQP_SOCDetailStudent() { this.DQP_SOCDetailStudentAttachment = new HashSet<DQP_SOCDetailStudentAttachment>(); } /// <summary> /// SOCDetailStudentID /// </summary> public System.Guid SOCDetailStudentID { get; set; } /// <summary> /// SOCDetailID /// </summary> public Nullable<System.Guid> SOCDetailID { get; set; } /// <summary> /// UserID /// </summary> public Nullable<System.Guid> UserID { 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_Student /// </summary> public virtual CF_Student CF_Student { get; set; } /// <summary> /// DQP_SOCDetail /// </summary> public virtual DQP_SOCDetail DQP_SOCDetail { get; set; } /// <summary> /// DQP_SOCDetailStudentAttachment /// </summary> public virtual HashSet<DQP_SOCDetailStudentAttachment> DQP_SOCDetailStudentAttachment { get; set; } } }