BemsPeakHistory.cs 654 B

1234567891011121314151617181920
  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 BemsPeakHistory {
  7. //최대전력 관제점 이력
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "데이터 저장 일시"), Key]
  11. public DateTime CreatedDateTime { get; set; }
  12. [Display(Name = "현재값"), Required]
  13. public double? CurrentValue { get; set; }
  14. [ForeignKey("SiteId")]
  15. public virtual CmSite Site { get; set; }
  16. }
  17. }