15320c3850b87dcba9df6999d934124f1791632e.svn-base 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 CmBuilding
  14. {
  15. public CmBuilding()
  16. {
  17. this.BemsMonitoringPoint = new HashSet<BemsMonitoringPoint>();
  18. this.CmFloor = new HashSet<CmFloor>();
  19. this.CmZone = new HashSet<CmZone>();
  20. this.CmZoneTempHumiSet = new HashSet<CmZoneTempHumiSet>();
  21. this.CmPatrolPos = new HashSet<CmPatrolPos>();
  22. this.BemsEnergyDaily = new HashSet<BemsEnergyDaily>();
  23. this.CmFacility = new HashSet<CmFacility>();
  24. }
  25. public int SiteId { get; set; }
  26. public int BuildingId { get; set; }
  27. public string Name { get; set; }
  28. public Nullable<int> FileId { get; set; }
  29. public Nullable<bool> IsUse { get; set; }
  30. public Nullable<int> SortOrderNo { get; set; }
  31. public virtual ICollection<BemsMonitoringPoint> BemsMonitoringPoint { get; set; }
  32. public virtual ICollection<CmFloor> CmFloor { get; set; }
  33. public virtual ICollection<CmZone> CmZone { get; set; }
  34. public virtual ICollection<CmZoneTempHumiSet> CmZoneTempHumiSet { get; set; }
  35. public virtual ICollection<CmPatrolPos> CmPatrolPos { get; set; }
  36. public virtual CmSite CmSite { get; set; }
  37. public virtual ICollection<BemsEnergyDaily> BemsEnergyDaily { get; set; }
  38. public virtual ICollection<CmFacility> CmFacility { get; set; }
  39. }
  40. }