1234567891011121314151617181920212223242526272829 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsControlPointHistory
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public System.DateTime CreateDateTime { get; set; }
- public double ControlValue { get; set; }
- public string WriteServiceName { get; set; }
- public Nullable<System.DateTime> ActionDateTime { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- }
- }
|