1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ET_TeachersPreOrder
- {
-
-
-
- public System.Guid TeachersPreOrderID { get; set; }
-
-
-
- public System.Guid SchoolyearID { get; set; }
-
-
-
- public System.Guid TeachingMaterialPoolID { get; set; }
-
-
-
- public Nullable<int> ApprovalStatus { get; set; }
-
-
-
- public int PreQty { 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 virtual CF_Schoolyear CF_Schoolyear { get; set; }
-
-
-
- public virtual CF_TeachingMaterialPool CF_TeachingMaterialPool { get; set; }
- }
- }
|