12345678910111213141516171819202122232425262728293031 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsDrawingCodeType
- {
- public FmsDrawingCodeType()
- {
- this.FmsDrawing = new HashSet<FmsDrawing>();
- }
-
- public int SiteId { get; set; }
- public int DrawingTypeId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual ICollection<FmsDrawing> FmsDrawing { get; set; }
- public virtual CmSite CmSite { get; set; }
- public virtual CmSite CmSite1 { get; set; }
- }
- }
|