1234567891011121314151617181920212223242526272829 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsConstructionCodeType
- {
- public FmsConstructionCodeType()
- {
- this.FmsConstruction = new HashSet<FmsConstruction>();
- }
-
- public int SiteId { get; set; }
- public int ConstructionTypeId { get; set; }
- public string Name { get; set; }
- public bool IsUse { get; set; }
-
- public virtual ICollection<FmsConstruction> FmsConstruction { get; set; }
- }
- }
|