using System.ComponentModel.DataAnnotations;
namespace VirtualTask.Models
{
public class Rapportini
{
///
/// Seriale
///
public string? seriale_rapportino { get; set; }
///
/// Azienda
///
public string? azienda_impianto { get; set; }
///
/// Codice Impianto
///
public string? codice_impianto { get; set; }
///
/// Seriale chiamata
///
public string? seriale_chiamata { get; set; }
///
/// Seriale chiamata
///
public string? seriale_commessa { get; set; }
///
/// Data rapportino
///
public DateTime? data_rapportino { get; set; }
///
/// Codice Cliente
///
public string? ancodice { get; set; }
/// Ragione Sociale
public string? andescri { get; set; }
/// ora inizio rapportino
public string? ora_ini_rapportino { get; set; }
/// ora inizio rapportino
public string? ora_fin_rapportino { get; set; }
/// min inizio rapportino
public string? min_ini_rapportino { get; set; }
/// min inizio rapportino
public string? min_fin_rapportino { get; set; }
/// codice chiusura 1
public string? codice_chiusura_1 { get; set; }
/// codice chiusura 2
public string? codice_chiusura_2 { get; set; }
/// codice chiusura 3
public string? codice_chiusura_3 { get; set; }
/// codice chiusura 4
public string? codice_chiusura_4 { get; set; }
/// codice chiusura 5
public string? codice_chiusura_5 { get; set; }
/// codice chiusura 6
public string? codice_chiusura_6 { get; set; }
/// codice chiusura 7
public string? codice_chiusura_7 { get; set; }
/// codice chiusura 8
public string? codice_chiusura_8 { get; set; }
/// codice chiusura 9
public string? codice_chiusura_9 { get; set; }
/// codice chiusura 10
public string? codice_chiusura_10 { get; set; }
/// descrizione int
public string? descrizione_intervento { get; set; }
/// tecnico
public string? codice_tecnico { get; set; }
/// firma
public string? firma { get; set; }
/// cod intervento
public string? codice_intervento { get; set; }
///
public string? note_intervento { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? ore_lavoro { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? materiale { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? diritto_chiamata { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? manodopera { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? spese_viaggio { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(7, 2)")]
public decimal? anticipo { get; set; }
///
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(9, 2)")]
public decimal? totale { get; set; }
}
}