123456789101112131415161718192021222324252627282930 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsEnergyCost
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public Nullable<double> PowerConsumption1 { get; set; }
- public Nullable<double> PowerConsumption2 { get; set; }
- public Nullable<double> GasConsumption { get; set; }
- public Nullable<double> GasHeatQuantity { get; set; }
- public Nullable<int> PowerPriceTypeId { get; set; }
- public Nullable<int> GasPriceTypeId { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual CmFacility CmFacility { get; set; }
- }
- }
|