BemsMonitoringPoint.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 이 코드는 템플릿에서 생성되었습니다.
  4. //
  5. // 이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다.
  6. // 코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace iBemsDataService.Model
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class BemsMonitoringPoint
  14. {
  15. public BemsMonitoringPoint()
  16. {
  17. this.BemsControlPointHistory = new HashSet<BemsControlPointHistory>();
  18. this.BemsFormulaParameter = new HashSet<BemsFormulaParameter>();
  19. this.BemsMonitoringPointToAnlaysisType = new HashSet<BemsMonitoringPointToAnlaysisType>();
  20. this.BemsMonitoringPointHistory15min = new HashSet<BemsMonitoringPointHistory15min>();
  21. this.BemsMonitoringPointHistoryDaily = new HashSet<BemsMonitoringPointHistoryDaily>();
  22. this.BemsMonitoringPointHistoryHourly = new HashSet<BemsMonitoringPointHistoryHourly>();
  23. this.BemsMonitoringPointHistory15minRawData = new HashSet<BemsMonitoringPointHistory15minRawData>();
  24. }
  25. public int SiteId { get; set; }
  26. public int FacilityTypeId { get; set; }
  27. public int FacilityCode { get; set; }
  28. public int PropertyId { get; set; }
  29. public int ValueType { get; set; }
  30. public Nullable<short> ServiceTypeId { get; set; }
  31. public Nullable<short> FuelTypeId { get; set; }
  32. public string Name { get; set; }
  33. public string Description { get; set; }
  34. public Nullable<int> BuildingId { get; set; }
  35. public Nullable<int> FloorId { get; set; }
  36. public Nullable<int> ZoneId { get; set; }
  37. public virtual ICollection<BemsControlPointHistory> BemsControlPointHistory { get; set; }
  38. public virtual BemsFacilityType BemsFacilityType { get; set; }
  39. public virtual ICollection<BemsFormulaParameter> BemsFormulaParameter { get; set; }
  40. public virtual ICollection<BemsMonitoringPointToAnlaysisType> BemsMonitoringPointToAnlaysisType { get; set; }
  41. public virtual BemsServiceType BemsServiceType { get; set; }
  42. public virtual CmBuilding CmBuilding { get; set; }
  43. public virtual CmFloor CmFloor { get; set; }
  44. public virtual CmZone CmZone { get; set; }
  45. public virtual ICollection<BemsMonitoringPointHistory15min> BemsMonitoringPointHistory15min { get; set; }
  46. public virtual ICollection<BemsMonitoringPointHistoryDaily> BemsMonitoringPointHistoryDaily { get; set; }
  47. public virtual ICollection<BemsMonitoringPointHistoryHourly> BemsMonitoringPointHistoryHourly { get; set; }
  48. public virtual BemsMonitoringPointConfig BemsMonitoringPointConfig { get; set; }
  49. public virtual BemsFuelType BemsFuelType { get; set; }
  50. public virtual CmFacility CmFacility { get; set; }
  51. public virtual ICollection<BemsMonitoringPointHistory15minRawData> BemsMonitoringPointHistory15minRawData { get; set; }
  52. }
  53. }