//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// ET_TeachingMateriaInventory /// public partial class ET_TeachingMateriaInventory { public ET_TeachingMateriaInventory() { this.ET_InventoryCollect = new HashSet(); } /// /// TeachingMateriaInventoryID /// public System.Guid TeachingMateriaInventoryID { get; set; } /// /// TeachingMaterialPoolID /// public System.Guid TeachingMaterialPoolID { get; set; } /// /// LibraryID /// public Nullable LibraryID { get; set; } /// /// Discount /// public Nullable Discount { get; set; } /// /// DiscountPrice /// public Nullable DiscountPrice { get; set; } /// /// PresentInventory /// public Nullable PresentInventory { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// Desc /// public string Desc { get; set; } /// /// CF_Library /// public virtual CF_Library CF_Library { get; set; } /// /// CF_TeachingMaterialPool /// public virtual CF_TeachingMaterialPool CF_TeachingMaterialPool { get; set; } /// /// ET_InventoryCollect /// public virtual HashSet ET_InventoryCollect { get; set; } } }