123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointToAnlaysisType
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public int AnalysisType { get; set; }
-
- public virtual BemsAnalysisType BemsAnalysisType { get; set; }
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- }
- }
|