1234567891011121314151617181920212223242526272829 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointHistoryDaily
- {
- 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 DailyValue { get; set; }
- public Nullable<double> MaxValue { get; set; }
- public Nullable<double> MinValue { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- }
- }
|