using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
///
/// Tabella PRESA
///
public class Prese
{
/// Azienda
[Key]
public string? picodazi { get; set; }
/// Impianto
[Key]
public string? pimpianto { get; set; }
/// Codice intervento QUI=? SEM=SEMESTRALE
[Key]
public string? picodint { get; set; }
/// Tecnico
public string? picodtec { get; set; }
/// data della manutenzione
[Key]
public DateTime? pidatman { get; set; }
/// Zona manutenzione
public string? pizona { get; set; }
/// check presa
public string? pichkpre { get; set; }
/// cpccchk
public string? cpccchk { get; set; }
}
}