50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace GPW.CORE.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
public partial class RegAttivitaDayExplModel
|
|
{
|
|
[Key, Column("idxRA")]
|
|
public int IdxRA { get; set; } = 0;
|
|
|
|
[Column("idxDipendente")]
|
|
public int IdxDipendente { get; set; } = 0;
|
|
[Column("idxFase")]
|
|
public int IdxFase { get; set; } = 0;
|
|
[Column("idxProgetto")]
|
|
public int IdxProgetto { get; set; } = 0;
|
|
[Column("inizio")]
|
|
public DateTime Inizio { get; set; } = DateTime.Today;
|
|
[Column("fine")]
|
|
public DateTime Fine { get; set; } = DateTime.Today;
|
|
|
|
[Column("descrizione")]
|
|
public string Descrizione { get; set; } = "";
|
|
|
|
public string RagSociale { get; set; } = "";
|
|
[Column("nomeProj")]
|
|
public string NomeProj { get; set; } = "";
|
|
[Column("nomeFase")]
|
|
public string NomeFase { get; set; } = "";
|
|
[Column("cognomeNome")]
|
|
public string CognomeNome { get; set; } = "";
|
|
[Column("gruppo")]
|
|
public string Gruppo { get; set; } = "";
|
|
|
|
[Column("oreTot")]
|
|
public decimal OreTot { get; set; } = 0;
|
|
[Column("importo")]
|
|
public decimal Importo { get; set; } = 0;
|
|
[Column("minTot")]
|
|
public decimal MinTot { get; set; } = 0;
|
|
|
|
|
|
}
|
|
}
|