- inizio pagina gest fluxLog e pareto eventi
- ok visualizzazione ultimo mese
This commit is contained in:
Samuele Locatelli
2023-10-20 18:54:28 +02:00
parent 66bad58f8f
commit 571ac2cea8
15 changed files with 494 additions and 30 deletions
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DatabaseModels
{
[Table("AnagKeyValue")]
public partial class AnagKeyValueModel
{
#region Public Properties
[Key]
public string nomeVar { get; set; } = "";
public int valInt { get; set; } = 0;
public double valFloat { get; set; } = 0;
public string valString { get; set; } = "";
public string descrizione { get; set; } = "";
#endregion Public Properties
}
}