21 lines
560 B
C#
21 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VTcr
|
|
{
|
|
public string IdxMacchina { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public DateTime DataOraRif { get; set; }
|
|
public decimal Tcmedio { get; set; }
|
|
public int PzProd { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public decimal Tcassegnato { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public int PzPallet { get; set; }
|
|
}
|
|
}
|