using System; using System.Collections.Generic; #nullable disable namespace Monitor.Models { public partial class TEgEmeterHourEnergyValue { public long FId { get; set; } public string FEmeterNo { get; set; } public float FHourValue { get; set; } public DateTime FStartTime { get; set; } public DateTime FEndTime { get; set; } } }