ApiSoftway/Models/Destinazioni_out.cs

63 lines
2.6 KiB
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models
{
[Keyless]
public class Destinazioni_out
{
public string? CodAutomezzo { get; set; }
public string? DescAutomezzo { get; set; }
public string? Brserial { get; set; }
public DateTime? DataCarico { get; set; }
public string? CodCommittente { get; set; }
public string? Committente { get; set; }
public string? CodAutista { get; set; }
public string? Autista { get; set; }
public string? CodSede { get; set; }
public string? Sede { get; set; }
public string? IndirizzoSede { get; set; }
public int? Cproword { get; set; }
public int? Cprownum { get; set; }
public string? Brmerce { get; set; }
public string? Brnote { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? ImportoDaRitirare { get; set; }
public string? ItemList { get; set; }
public ConsegnaFatta? ConsFatta { get; set; }
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; }
//progressivo- chiave tabella pimodgir
public string? Prog { get; set; }
public bool? BtnChiudiVisible { get; set; }
public bool? BtnNonChiudiVisible { get; set; }
}
public class ConsegnaFatta
{
public string? consFattaSerial { get; set; }
public int? consFattaRow { get; set; }
public int? consFattaBanCar { get; set; }
public int? consFattaBanSca { get; set; }
public string? consFattaMezzo { get; set; }
public string? consFattaAut { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? consFattaImpor { get; set; }
public string? consFattaNotImp { get; set; }
public string? consFattaNotBan { get; set; }
public string? consFattaFlagCons { get; set; }
public DateTime? consFattaDataOra { get; set; }
}
}