ApiSoftway/Models/Destinazioni.cs
2025-03-21 14:51:34 +01:00

64 lines
2.5 KiB
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models
{
[Keyless]
public class Destinazioni
{
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; }
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; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? ImportoDaRitirare { get; set; }
public string? consFattaFlagCons { get; set; }
public DateTime? consFattaDataOra { 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 string? NoteConsegna { get; set; }
public int? Seq { get; set; }
//progressivo- chiave tabella pimodgir
public string? Prog { get; set; }
public string? CliFatt { get; set; }
public int? BancaliIniziali { get; set; }
}
}