using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace ApiPolo.Models { /// /// Contiene i campi di xxxMICOMIMP (componenti impianto) oggetto di output /// [Keyless] public class Compo_Impia_out { /// /// codice impianto /// public string? cocodimp { get; set; } /// /// codice impianto /// public string? cocodazi { get; set; } /// /// indice riga /// public int? cprownum { get; set; } /// /// codice articolo /// [Column(TypeName = "decimal(10, 6)")] public decimal? coqtaart { get; set; } /// /// codice articolo /// public string? cocodart { get; set; } /// /// note /// public string? co__note { get; set; } /// /// lotto articolo /// public string? lotto { get; set; } /// /// matricola articolo /// public string? matricola { get; set; } /// /// errore titolo /// public string? err_title { get; set; } /// /// errore dettaglio /// public string? err_detail { get; set; } /// /// errore status code (200, 500) /// public string? err_status_code { get; set; } } }