ApiSoftway/Models/GiriConsegna_out.cs

29 lines
995 B
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; }
}
}