31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VPodlNonChiusi
|
|
{
|
|
public int IdxPromessa { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public string KeyBcode { get; set; }
|
|
public bool Attivabile { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public DateTime? DataInizio { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public string DescArticolo { get; set; }
|
|
public string CodGruppo { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string Nome { get; set; }
|
|
public int NumPezzi { get; set; }
|
|
public decimal Tcassegnato { get; set; }
|
|
public DateTime DueDate { get; set; }
|
|
public int Priorita { get; set; }
|
|
public int PzPallet { get; set; }
|
|
public decimal? TotMinProg { get; set; }
|
|
public decimal? TotOreProg { get; set; }
|
|
}
|
|
}
|