Files
mapo-core/MP.Data/DatabaseModels/TcrDayTest.cs
T
2021-05-17 13:33:13 +02:00

20 lines
519 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class TcrDayTest
{
public DateTime DataOraRif { get; set; }
public string IdxMacchina { get; set; }
public string CodArticolo { get; set; }
public int PzProd { get; set; }
public decimal? Tcmedio { get; set; }
public decimal? Tcmin { get; set; }
public decimal? Tcmax { get; set; }
public decimal? Tc50p { get; set; }
}
}