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