SoftwayWeb/Models/Destinazioni_Out.cs

85 lines
3.4 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace SoftwayWeb.Models
{
public class Destinazioni_Out
{
[Display(Name = "Cod. Automezzo")]
public string? CodAutomezzo { get; set; }
[Display(Name = "Automezzo")]
public string? DescAutomezzo { get; set; }
[Display(Name = "Seriale")]
public string? Brserial { get; set; }
[Display(Name = "Data carico")]
public DateTime? DataCarico { get; set; }
[Display(Name = "Cod. committente")]
public string? CodCommittente { get; set; }
[Display(Name = "Committente")]
public string? Committente { get; set; }
[Display(Name = "Cod. Autista")]
public string? CodAutista { get; set; }
[Display(Name = "Autista")]
public string? Autista { get; set; }
[Display(Name = "Codice sede")]
public string? CodSede { get; set; }
[Display(Name = "Sede")]
public string? Sede { get; set; }
[Display(Name = "Indirizzo")]
public string? IndirizzoSede { get; set; }
[Display(Name = "Riga")]
public int? Cproword { get; set; }
[Display(Name = "Riga")]
public int? Cprownum { get; set; }
[Display(Name = "Merce")]
public string? Brmerce { get; set; }
[Display(Name = "Note")]
public string? Brnote { get; set; }
[Display(Name = "Importo da Ritirare"), System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? ImportoDaRitirare { get; set; }
public string? ItemList { get; set; }
public ConsegnaFatta? ConsFatta { get; set; }
[Display(Name = "Seriale Giro")]
public string? serialeGiro { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Casse { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Trasf { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Colli { get; set; }
public int? num_cons { get; set; }
public int? Uova { get; set; }
public int? Cist { get; set; }
public string? Note { get; set; }
public int? Seq { get; set; }
public class ConsegnaFatta
{
[Display(Name = "Seriale consegna")]
public string? consFattaSerial { get; set; }
[Display(Name = "Riga")]
public int? consFattaRow { get; set; }
[Display(Name = "Bancali caricati")]
public int? consFattaBanCar { get; set; }
[Display(Name = "Bancali scaricati")]
public int? consFattaBanSca { get; set; }
[Display(Name = "Automezzo")]
public string? consFattaMezzo { get; set; }
[Display(Name = "Autista")]
public string? consFattaAut { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? consFattaImpor { get; set; }
[Display(Name = "Note 1")]
public string? consFattaNotImp { get; set; }
[Display(Name = "Note 2")]
public string? consFattaNotBan { get; set; }
[Display(Name = "Consegato")]
public string? consFattaFlagCons { get; set; }
}
}
}