28 lines
883 B
C#
28 lines
883 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VEcpExtended
|
|
{
|
|
public int IdxEcp { get; set; }
|
|
public DateTime DataOraConf { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string DescMacchina { get; set; }
|
|
public string KeyRichiesta { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public int PezziConf { get; set; }
|
|
public int PezziScar { get; set; }
|
|
public int PezziDaRilav { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public string Cognome { get; set; }
|
|
public string Nome { get; set; }
|
|
public decimal Tcassegnato { get; set; }
|
|
public DateTime DueDate { get; set; }
|
|
}
|
|
}
|