BemsEnergyConfigPercentMonth.cs 911 B

12345678910111213141516171819202122232425
  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 BemsEnergyConfigPercentMonth {
  7. //월별 에너지 사용량 예측 설정
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "연도"), Key]
  11. public int Year { get; set; }
  12. [Display(Name = "월"), Key]
  13. public int Month { get; set; }
  14. [Display(Name = "예상 전력 사용량")]
  15. public double? Electricity { get; set; }
  16. [Display(Name = "예상 가스 사용량")]
  17. public double? Gas { get; set; }
  18. [Display(Name = "예상 수도 사용량")]
  19. public double? Water { get; set; }
  20. [ForeignKey("SiteId")]
  21. public virtual CmSite Site { get; set; }
  22. }
  23. }