123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointHistory15min
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public System.DateTime CreatedDateTime { get; set; }
- public double CurrentValue { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- }
- }
|