22 lines
614 B
C#
22 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VTcrDay
|
|
{
|
|
public DateTime? DataOraRif { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string DescMacchina { 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; }
|
|
}
|
|
}
|