1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmFloor
- {
- public CmFloor()
- {
- this.BemsMonitoringPoint = new HashSet<BemsMonitoringPoint>();
- this.CmZone = new HashSet<CmZone>();
- this.CmZoneTempHumiSet = new HashSet<CmZoneTempHumiSet>();
- this.CmPatrolPos = new HashSet<CmPatrolPos>();
- this.CmFacility = new HashSet<CmFacility>();
- }
-
- public int SiteId { get; set; }
- public int BuildingId { get; set; }
- public int FloorId { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<BemsMonitoringPoint> BemsMonitoringPoint { get; set; }
- public virtual CmBuilding CmBuilding { get; set; }
- public virtual ICollection<CmZone> CmZone { get; set; }
- public virtual ICollection<CmZoneTempHumiSet> CmZoneTempHumiSet { get; set; }
- public virtual ICollection<CmPatrolPos> CmPatrolPos { get; set; }
- public virtual ICollection<CmFacility> CmFacility { get; set; }
- }
- }
|