ApiSoftway/Models/GiriConsegnaView.cs
2024-06-27 17:39:12 +02:00

27 lines
870 B
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models
{
[Keyless]
public class GiriConsegnaView
{
public string? SerialeGiro { get; set; }
public DateTime? DataGiro { get; set; }
public string? CodAutista { get; set; }
public string? Autista { get; set; }
public int? BancaliCaricati { get; set; }
public int? BancaliRecuperati { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? ImportoDaRecuperare { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? ImportoRecuperato { get; set; }
public DateTime? DataChiusura { get; set; }
public string? CodMezzo { get; set; }
public string? Automezzo { get; set; }
}
}