123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ET_TeachingMateriaInventory
- {
- public ET_TeachingMateriaInventory()
- {
- this.ET_InventoryCollect = new HashSet<ET_InventoryCollect>();
- }
-
-
-
-
- public System.Guid TeachingMateriaInventoryID { get; set; }
-
-
-
- public System.Guid TeachingMaterialPoolID { get; set; }
-
-
-
- public Nullable<System.Guid> LibraryID { get; set; }
-
-
-
- public Nullable<decimal> Discount { get; set; }
-
-
-
- public Nullable<decimal> DiscountPrice { get; set; }
-
-
-
- public Nullable<int> PresentInventory { 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_Library CF_Library { get; set; }
-
-
-
- public virtual CF_TeachingMaterialPool CF_TeachingMaterialPool { get; set; }
-
-
-
- public virtual HashSet<ET_InventoryCollect> ET_InventoryCollect { get; set; }
- }
- }
|