1234567891011121314151617181920212223242526 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsEnergyConfigPercentMonth
- {
- public int SiteId { get; set; }
- public int Year { get; set; }
- public int Month { get; set; }
- public Nullable<double> Electricity { get; set; }
- public Nullable<double> Gas { get; set; }
- public Nullable<double> Water { get; set; }
-
- public virtual CmSite CmSite { get; set; }
- }
- }
|