f8013dcf6fc383397427b1fc7608eebc93ca6028.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 CmFloor
  14. {
  15. public CmFloor()
  16. {
  17. this.BemsMonitoringPoint = new HashSet<BemsMonitoringPoint>();
  18. this.CmZone = new HashSet<CmZone>();
  19. this.CmZoneTempHumiSet = new HashSet<CmZoneTempHumiSet>();
  20. this.CmPatrolPos = new HashSet<CmPatrolPos>();
  21. this.CmFacility = new HashSet<CmFacility>();
  22. }
  23. public int SiteId { get; set; }
  24. public int BuildingId { get; set; }
  25. public int FloorId { get; set; }
  26. public string Name { get; set; }
  27. public virtual ICollection<BemsMonitoringPoint> BemsMonitoringPoint { get; set; }
  28. public virtual CmBuilding CmBuilding { get; set; }
  29. public virtual ICollection<CmZone> CmZone { get; set; }
  30. public virtual ICollection<CmZoneTempHumiSet> CmZoneTempHumiSet { get; set; }
  31. public virtual ICollection<CmPatrolPos> CmPatrolPos { get; set; }
  32. public virtual ICollection<CmFacility> CmFacility { get; set; }
  33. }
  34. }