1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 이 코드는 템플릿에서 생성되었습니다.
- //
- // 이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다.
- // 코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmFile
- {
- public CmFile()
- {
- this.CmAnnouncement = new HashSet<CmAnnouncement>();
- this.FmsDrawingHistory = new HashSet<FmsDrawingHistory>();
- this.FmsMaterialPurchaseOrder = new HashSet<FmsMaterialPurchaseOrder>();
- this.FmsWorkResultFile = new HashSet<FmsWorkResultFile>();
- this.FmsAccident = new HashSet<FmsAccident>();
- this.FmsAccident1 = new HashSet<FmsAccident>();
- this.FmsAccident2 = new HashSet<FmsAccident>();
- this.FmsConstruction = new HashSet<FmsConstruction>();
- this.FmsConstruction1 = new HashSet<FmsConstruction>();
- this.FmsConstruction2 = new HashSet<FmsConstruction>();
- this.FmsManualHistory = new HashSet<FmsManualHistory>();
- this.FmsMaterial = new HashSet<FmsMaterial>();
- this.FmsReport = new HashSet<FmsReport>();
- this.FmsWorkResultCheckItem = new HashSet<FmsWorkResultCheckItem>();
- this.FmsWorkResultCheckItem1 = new HashSet<FmsWorkResultCheckItem>();
- this.CmFacility = new HashSet<CmFacility>();
- }
-
- public int SiteId { get; set; }
- public int FileId { get; set; }
- public int FileCategoryId { get; set; }
- public string Name { get; set; }
- public Nullable<int> FileSize { get; set; }
- public Nullable<System.DateTime> CreatedDate { get; set; }
- public string ContentType { get; set; }
-
- public virtual ICollection<CmAnnouncement> CmAnnouncement { get; set; }
- public virtual CmFacilityFile CmFacilityFile { get; set; }
- public virtual CmFileCategory CmFileCategory { get; set; }
- public virtual ICollection<FmsDrawingHistory> FmsDrawingHistory { get; set; }
- public virtual ICollection<FmsMaterialPurchaseOrder> FmsMaterialPurchaseOrder { get; set; }
- public virtual ICollection<FmsWorkResultFile> FmsWorkResultFile { get; set; }
- public virtual ICollection<FmsAccident> FmsAccident { get; set; }
- public virtual ICollection<FmsAccident> FmsAccident1 { get; set; }
- public virtual ICollection<FmsAccident> FmsAccident2 { get; set; }
- public virtual ICollection<FmsConstruction> FmsConstruction { get; set; }
- public virtual ICollection<FmsConstruction> FmsConstruction1 { get; set; }
- public virtual ICollection<FmsConstruction> FmsConstruction2 { get; set; }
- public virtual ICollection<FmsManualHistory> FmsManualHistory { get; set; }
- public virtual ICollection<FmsMaterial> FmsMaterial { get; set; }
- public virtual CmSite CmSite { get; set; }
- public virtual ICollection<FmsReport> FmsReport { get; set; }
- public virtual ICollection<FmsWorkResultCheckItem> FmsWorkResultCheckItem { get; set; }
- public virtual ICollection<FmsWorkResultCheckItem> FmsWorkResultCheckItem1 { get; set; }
- public virtual ICollection<CmFacility> CmFacility { get; set; }
- }
- }
|