64 lines
1.5 KiB
C#
64 lines
1.5 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace ApiPolo.Models
|
|
{
|
|
/// <summary>
|
|
/// Contiene i campi di xxxMICOMIMP (componenti impianto)
|
|
/// </summary>
|
|
[Keyless]
|
|
public class Compo_Impia
|
|
{
|
|
/// <summary>
|
|
/// codice impianto
|
|
/// </summary>
|
|
public string? cocodimp { get; set; }
|
|
|
|
/// <summary>
|
|
/// codice impianto
|
|
/// </summary>
|
|
public string? cocodazi { get; set; }
|
|
|
|
/// <summary>
|
|
/// indice riga
|
|
/// </summary>
|
|
public int? cprownum { get; set; }
|
|
|
|
/// <summary>
|
|
/// quantità
|
|
/// </summary>
|
|
[Column(TypeName = "decimal(10, 6)")]
|
|
public decimal? coqtaart { get; set; }
|
|
|
|
/// <summary>
|
|
/// codice articolo
|
|
/// </summary>
|
|
public string? cocodart { get; set; }
|
|
|
|
/// <summary>
|
|
/// note
|
|
/// </summary>
|
|
public string? co__note { get; set; }
|
|
|
|
/// <summary>
|
|
/// lotto articolo
|
|
/// </summary>
|
|
public string? lotto { get; set; }
|
|
|
|
/// <summary>
|
|
/// matricola articolo
|
|
/// </summary>
|
|
public string? matricola { get; set; }
|
|
|
|
/// <summary>
|
|
/// descrizione articolo
|
|
///
|
|
/// </summary>
|
|
public string? ardesart { get; set; }
|
|
|
|
/// <summary>descrizione per ogni articolo (se abilitata da configurazioni)</summary>
|
|
public string? desc_sup { get; set; }
|
|
}
|
|
}
|