123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_Library
- {
- public CF_Library()
- {
- this.ET_TeachingMateriaInventory = new HashSet<ET_TeachingMateriaInventory>();
- this.ET_StockInDetail = new HashSet<ET_StockInDetail>();
- this.ET_StockOutDetail = new HashSet<ET_StockOutDetail>();
- }
-
-
-
-
- public System.Guid LibraryID { get; set; }
-
-
-
- public string LibraryCode { get; set; }
-
-
-
- public string LibraryName { get; set; }
-
-
-
- public Nullable<System.Guid> CampusID { get; set; }
-
-
-
- public string HeadPeople { get; set; }
-
-
-
- public string ContectTelNumber { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
- public string Desc { get; set; }
-
-
-
-
- public virtual CF_Campus CF_Campus { get; set; }
-
-
-
- public virtual HashSet<ET_TeachingMateriaInventory> ET_TeachingMateriaInventory { get; set; }
-
-
-
- public virtual HashSet<ET_StockInDetail> ET_StockInDetail { get; set; }
-
-
-
- public virtual HashSet<ET_StockOutDetail> ET_StockOutDetail { get; set; }
- }
- }
|