1234567891011121314151617181920212223242526272829303132 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointBaseData
- {
- public int FacilityTypeId { get; set; }
- public int PropertyId { get; set; }
- public int ValueType { get; set; }
- public bool IsAccumulated { get; set; }
- public Nullable<short> ServiceTypeId { get; set; }
- public Nullable<short> FuelTypeId { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
- public Nullable<bool> IsSampled { get; set; }
- public Nullable<bool> IsConverted { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsServiceType BemsServiceType { get; set; }
- public virtual BemsFuelType BemsFuelType { get; set; }
- }
- }
|