ApiSoftway/Models/GiriConsegna_out.cs
2025-01-14 16:38:23 +01:00

31 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models
{
[Keyless]
public class GiriConsegna_out
{
public string? Pisergir { get; set; }
public DateTime? Pidata { get; set; }
public string? Piautist { get; set; }
public int? Pitbancar { get; set; }
public int? Pitbanrec { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? Pidarecu { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)")]
public decimal? Pirecupe { get; set; }
public DateTime? Pidatchi { get; set; }
/// <summary>errore titolo</summary>
public string? err_title { get; set; }
/// <summary>errore dettaglio</summary>
public string? err_detail { get; set; }
/// <summary>errore status code (200, 500)</summary>
public string? err_status_code { get; set; }
public string? Pimezzo { get; set; }
public string? Pinote { get; set; }
}
}