BemsPeakHistoryDaily.cs 853 B

12345678910111213141516171819202122
  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 BemsPeakHistoryDaily {
  7. //일별 전력 피크
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "DB 등록 시간"), Key]
  11. public DateTime CreatedDateTime { get; set; }
  12. [Display(Name = "최대 피크 값")]
  13. public double? MaxPeakValue { get; set; }
  14. [Display(Name = "최대 피크 시간")]
  15. public DateTime MaxDateTime { get; set; }
  16. [Display(Name = "최소 피크 값")]
  17. public double? MinPeakValue { get; set; }
  18. [Display(Name = "최소 피크 시간")]
  19. public DateTime MinDateTime { get; set; }
  20. }
  21. }