12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ET_StudentDistribute
- {
- public ET_StudentDistribute()
- {
- this.ET_StudentDistribute_CF_Student = new HashSet<CF_Student>();
- this.ET_StudentNotDistribute = new HashSet<CF_Student>();
- }
-
-
-
-
- public System.Guid StudentDistributeID { get; set; }
-
-
-
- public Nullable<System.Guid> SpecialtyPlanID { get; set; }
-
-
-
- public Nullable<System.Guid> TeachingMaterialPoolID { get; set; }
-
-
-
- public int DistributeQty { get; set; }
-
-
-
- public Nullable<int> StockOutType { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public string StudentDistributeNo { get; set; }
-
-
-
- public string RecipientUser { get; set; }
-
-
-
-
- public virtual CF_TeachingMaterialPool CF_TeachingMaterialPool { get; set; }
-
-
-
- public virtual EM_SpecialtyPlan EM_SpecialtyPlan { get; set; }
-
-
-
- public virtual HashSet<CF_Student> ET_StudentDistribute_CF_Student { get; set; }
-
-
-
- public virtual HashSet<CF_Student> ET_StudentNotDistribute { get; set; }
- }
- }
|