//------------------------------------------------------------------------------ // // 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; /// /// CF_Library /// public partial class CF_Library { public CF_Library() { this.ET_TeachingMateriaInventory = new HashSet(); this.ET_StockInDetail = new HashSet(); this.ET_StockOutDetail = new HashSet(); } /// /// LibraryID /// public System.Guid LibraryID { get; set; } /// /// LibraryCode /// public string LibraryCode { get; set; } /// /// LibraryName /// public string LibraryName { get; set; } /// /// CampusID /// public Nullable CampusID { get; set; } /// /// HeadPeople /// public string HeadPeople { get; set; } /// /// ContectTelNumber /// public string ContectTelNumber { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// Desc /// public string Desc { get; set; } /// /// CF_Campus /// public virtual CF_Campus CF_Campus { get; set; } /// /// ET_TeachingMateriaInventory /// public virtual HashSet ET_TeachingMateriaInventory { get; set; } /// /// ET_StockInDetail /// public virtual HashSet ET_StockInDetail { get; set; } /// /// ET_StockOutDetail /// public virtual HashSet ET_StockOutDetail { get; set; } } }