a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
67 lines
1.8 KiB
C#
67 lines
1.8 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("ENTRATACILIEGIE")]
|
|
public partial class EntrataModel
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long ID_CHIAVE { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string CODBARRE { get; set; }
|
|
|
|
public double? CODICE_FORNITORE { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string CODICE_LUOGO_PRODUZIONE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string NOME_FORNITORE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string INDIRIZZO_FORNITORE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string COMUNE_FORNITORE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string NOME_LUOGO_PRODUZIONE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string INDIRIZZO_LUOGO_PRODUZIONE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string COMUNE_LUOGO_PRODUZIONE { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string CODICE_PRODOTTO { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string DESCRIZIONE_PRODOTTO { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string CODICE_PRODOTTO_GREZZO { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string DESCRIZIONE_PRODOTTO_GREZZO { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string SIGLA_LOTTO { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string NUMERO_LOTTO { get; set; }
|
|
|
|
[Column(TypeName = "datetime2")]
|
|
public DateTime? DATA_ENTRATA { get; set; }
|
|
|
|
public double? QUANTITA_ENTRATA { get; set; }
|
|
}
|
|
}
|