BemsLoadsHourly.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities {
  6. public partial class BemsLoadsHourly {
  7. //냉난방 부햐예측
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "건물번호"), Key]
  11. public int BuildingId { get; set; }
  12. [Display(Name = "냉난방 구분"), Key]
  13. public short ServiceTypeId { get; set; }
  14. [Display(Name = "생성일시"), Key]
  15. public DateTime CreatedDate { get; set; }
  16. [Display(Name = "예측"), Required]
  17. public int Prediction { get; set; }
  18. [Display(Name = "실측 부하량")]
  19. public int? Measurement { get; set; }
  20. [Display(Name = "건물 가동율")]
  21. public double? RateOfWork { get; set; }
  22. [ForeignKey("SiteId,BuildingId")]
  23. public virtual CmBuilding CmBuilding { get; set; }
  24. [ForeignKey("ServiceTypeId")]
  25. public virtual BemsServiceType ServiceType { get; set; }
  26. }
  27. }