Update ancora gest timbrature

This commit is contained in:
Samuele Locatelli
2024-09-13 15:39:31 +02:00
parent 6bcea21059
commit fa845a823f
16 changed files with 771 additions and 48 deletions
+7 -1
View File
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data;
namespace GPW.CORE.Data.DbModels
{
@@ -13,7 +14,7 @@ namespace GPW.CORE.Data.DbModels
public double h_giust { get; set; } = 0;
public decimal h_com { get; set; } = 0;
public string progetti { get; set; } = "";
public bool okLAvCom { get; set; } = false;
public int okLAvCom { get; set; } = 0;
public bool isOkTim { get; set; } = false;
public bool isOkApp { get; set; } = false;
public int isOkLav { get; set; } = 0;
@@ -45,5 +46,10 @@ namespace GPW.CORE.Data.DbModels
public bool TagIsActive { get; set; } = false;
public string CodTag { get; set; } = "";
[NotMapped]
public string UID
{
get => $"{IdxDipendente:000}_{DataLav:yyyyMMdd}";
}
}
}