28 lines
940 B
C#
28 lines
940 B
C#
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("ODL_Energy")]
|
|
public partial class OdlEnergyModel
|
|
{
|
|
[Key]
|
|
public int IdxOdl { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public string CodArticolo { get; set; } = "";
|
|
public string DescArticolo { get; set; } = "";
|
|
public decimal TCAssegnato { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public DateTime? DataInizio { get; set; }
|
|
public DateTime? DataFine { get; set; }
|
|
public decimal TotCount { get; set; } = 0;
|
|
public decimal TotWatt { get; set; } = 0;
|
|
public decimal TotGas { get; set; } = 0;
|
|
}
|
|
} |