a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
36 lines
880 B
C#
36 lines
880 B
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("ProductsTotals")]
|
|
public partial class ProductsTotalsModel
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int SizerBatchId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Index { get; set; }
|
|
|
|
public string Nome { get; set; }
|
|
|
|
public string Qualities { get; set; }
|
|
|
|
public string Grado { get; set; }
|
|
|
|
public string Calibro { get; set; }
|
|
|
|
public int NumeroFrutti { get; set; }
|
|
|
|
public string Decigrammi { get; set; }
|
|
}
|
|
}
|