56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
namespace EgwProxy.Icoel.DataLayer.DatabaseModels
|
|
{
|
|
|
|
[Table("DettagliConferimentoMES")]
|
|
public partial class DettConferimentoModel
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long PackId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long FillingId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int FilligRow { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long ScaricoId { get; set; }
|
|
|
|
public string CODBARRE { get; set; }
|
|
|
|
public string CODICE_FORNITORE { get; set; }
|
|
|
|
public string NOME_FORNITORE { get; set; }
|
|
|
|
public string CODICE_PRODOTTO { get; set; }
|
|
|
|
public string DESCRIZIONE_PRODOTTO { get; set; }
|
|
|
|
public string CODICE_PRODOTTO_GREZZO { get; set; }
|
|
|
|
public string DESCRIZIONE_PRODOTTO_GREZZO { get; set; }
|
|
|
|
public string SIGLA_LOTTO { get; set; }
|
|
|
|
public string NUMERO_LOTTO { get; set; }
|
|
|
|
public string DATA_ENTRATA { get; set; }
|
|
|
|
public string QUANTITA_ENTRATA { get; set; }
|
|
}
|
|
}
|