123456789101112131415161718192021222324252627282930 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsMonitoringPointConfig
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public bool IsAccumulated { get; set; }
- public bool IsSampled { get; set; }
- public int SaveMode { get; set; }
- public string ControlPointName { get; set; }
- public Nullable<bool> IsConverted { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- }
- }
|