1234567891011121314151617181920212223242526272829303132333435 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsDrawing
- {
- public FmsDrawing()
- {
- this.FmsDrawingHistory = new HashSet<FmsDrawingHistory>();
- }
-
- public int SiteId { get; set; }
- public int DrawingId { get; set; }
- public string DrawingNo { get; set; }
- public int DrawingGroupId { get; set; }
- public int DrawingTypeId { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
-
- public virtual FmsDrawingCodeGroup FmsDrawingCodeGroup { get; set; }
- public virtual FmsDrawingCodeType FmsDrawingCodeType { get; set; }
- public virtual ICollection<FmsDrawingHistory> FmsDrawingHistory { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|