12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ET_TeachersOrder
- {
-
-
-
- public System.Guid TeachersOrderID { get; set; }
-
-
-
- public System.Guid SchoolyearID { get; set; }
-
-
-
- public System.Guid CollegeID { get; set; }
-
-
-
- public System.Guid TeachingMaterialPoolID { get; set; }
-
-
-
- public int OrderQty { get; set; }
-
-
-
- public System.Guid OrderUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> OrderDate { get; set; }
-
-
-
- public string OrderDesc { 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 Desc { get; set; }
-
-
-
- public Nullable<int> ApprovalStatus { get; set; }
-
-
-
-
- public virtual CF_College CF_College { get; set; }
-
-
-
- public virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual CF_TeachingMaterialPool CF_TeachingMaterialPool { get; set; }
- }
- }
|