BemsEnergyCost.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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 BemsEnergyCost {
  7. //에너지원별 비용 조회
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "설비타입"), Required]
  11. public int FacilityTypeId { get; set; }
  12. [Display(Name = "설비코드"), Key]
  13. public int FacilityCode { get; set; }
  14. [Display(Name = "해빙운전 전력소비량")]
  15. public double? PowerConsumption1 { get; set; }
  16. [Display(Name = "제빙운전 전력소비량")]
  17. public double? PowerConsumption2 { get; set; }
  18. [Display(Name = "가스 소모량")]
  19. public double? GasConsumption { get; set; }
  20. [Display(Name = "가스 열량")]
  21. public double? GasHeatQuantity { get; set; }
  22. [Display(Name = "전력 가격 타입")]
  23. public int? PowerPriceTypeId { get; set; }
  24. [Display(Name = "가스 가격 타입")]
  25. public int? GasPriceTypeId { get; set; }
  26. [Display(Name = "사용여부")]
  27. public bool? IsUse { get; set; }
  28. [ForeignKey("SiteId,FacilityCode")]
  29. public virtual CmFacility CmFacility { get; set; }
  30. }
  31. }