56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiPolo.Models
|
|
{
|
|
/// <summary>
|
|
/// Classe componenti per scrittura db
|
|
/// </summary>
|
|
public class Compo_Impia_Table
|
|
{
|
|
/// <summary>
|
|
/// codice impianto
|
|
/// </summary>
|
|
[Key]
|
|
public string? cocodimp { get; set; }
|
|
|
|
/// <summary>
|
|
/// codice impianto
|
|
/// </summary>
|
|
[Key]
|
|
public string? cocodazi { get; set; }
|
|
|
|
/// <summary>
|
|
/// indice riga
|
|
/// </summary>
|
|
[Key]
|
|
public int? cprownum { get; set; }
|
|
|
|
/// <summary>
|
|
/// codice articolo
|
|
/// </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? pilotto { get; set; }
|
|
|
|
/// <summary>
|
|
/// matricola articolo
|
|
/// </summary>
|
|
public string? pimatric { get; set; }
|
|
}
|
|
}
|