12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities {
- public partial class BemsMonitoringPointHistoryHourly {
- //시간별 관제점 데이터
- [Display(Name = "현장 고유번호"), Key]
- public int SiteId { get; set; }
- [Display(Name = "대상 설비의 타입 ID")]
- public int FacilityTypeId { get; set; }
- [Display(Name = "대상 설비의 Code"), Key]
- public int FacilityCode { get; set; }
- [Display(Name = "대상 설비의 PropertyId"), Key]
- public int PropertyId { get; set; }
- [Display(Name = "DB 등록 시간"), Key]
- public DateTime CreatedDateTime { get; set; }
- [Display(Name = "현재값")]
- public double CurrentValue { get; set; }
- [ForeignKey("SiteId,FacilityCode,PropertyId")]
- public virtual BemsMonitoringPoint BemsMonitoringPoint { get; set; }
- [ForeignKey("FacilityTypeId")]
- public virtual BemsFacilityType FacilityType { get; set; }
- [NotMapped]
- [Display(Name = "이전검침값")]
- public double PrevPinValue { get; set; }
- [NotMapped]
- [Display(Name = "현재검침값")]
- public double CurrentPinValue { get; set; }
- [NotMapped]
- [Display(Name = "배수")]
- public double Multiple { get; set; }
- }
- }
|