// // This is here so CodeMaid doesn't reorganize this document // namespace EgwCoreLib.Lux.Data.DbModel.Stats { /// /// Classe statistiche impiego (orarie) di dettaglio (per envir/tipo) /// [Table("stats_detail")] public class StatsDetailModel { [Key] public int Id { get; set; } /// /// Ambiente /// public string Environment { get; set; } = ""; /// /// Codice mode/submode /// public string Type { get; set; } = ""; /// /// DataOra riferimento /// public DateTime Hour { get; set; } /// /// Num richieste complete/concluse (con ritorno) /// public long RequestCount { get; set; } = 0; /// /// Durata media esecuzione /// public double AvgDuration { get; set; } = 0; /// /// Durata massima esecuzione /// public double MaxDuration { get; set; } = 0; /// /// numero richieste senza risposta (num RUID avviati - num RUID chiusi) /// public long NoReply { get; set; } = 0; } }