12345678910111213141516171819202122232425 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointForecastingDayAhead
- {
- 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 System.DateTime TargetDateTime { get; set; }
- public double ForecastedValue { get; set; }
- }
- }
|