123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class DQP_SOCDetail
- {
- public DQP_SOCDetail()
- {
- this.DQP_SOCDetailAttachment = new HashSet<DQP_SOCDetailAttachment>();
- this.DQP_SOCDetailGroup = new HashSet<DQP_SOCDetailGroup>();
- this.DQP_SOCDetailStudent = new HashSet<DQP_SOCDetailStudent>();
- this.DQP_SOCDetailStudentScore = new HashSet<DQP_SOCDetailStudentScore>();
- }
-
-
-
-
- public System.Guid SOCDetailID { get; set; }
-
-
-
- public Nullable<System.Guid> SOCID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public Nullable<decimal> Credit { get; set; }
-
-
-
- public Nullable<decimal> Weight { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public Nullable<System.DateTime> StartTime { get; set; }
-
-
-
- public Nullable<System.DateTime> EndTime { get; set; }
-
-
-
- public Nullable<bool> IsGroup { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual DQP_SOC DQP_SOC { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCDetailAttachment> DQP_SOCDetailAttachment { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCDetailGroup> DQP_SOCDetailGroup { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCDetailStudent> DQP_SOCDetailStudent { get; set; }
-
-
-
- public virtual HashSet<DQP_SOCDetailStudentScore> DQP_SOCDetailStudentScore { get; set; }
- }
- }
|