31 lines
1017 B
C#
31 lines
1017 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VOdl
|
|
{
|
|
public int IdxOdl { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public int NumPezzi { get; set; }
|
|
public decimal Tcassegnato { get; set; }
|
|
public DateTime? DataInizio { get; set; }
|
|
public DateTime? DataFine { get; set; }
|
|
public string Note { get; set; }
|
|
public bool NeedAppr { get; set; }
|
|
public string UserAppr { get; set; }
|
|
public DateTime? DataAppr { get; set; }
|
|
public decimal? TcrichAttr { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public int PzPallet { get; set; }
|
|
public bool Provvisorio { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public string CommessaAs400 { get; set; }
|
|
public int ToAs400 { get; set; }
|
|
public DateTime? DueDate { get; set; }
|
|
}
|
|
}
|