45 lines
1.6 KiB
C#
45 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class TimbratureExpl
|
|
{
|
|
public DateTime DataLav { get; set; }
|
|
public int IdxDipendente { get; set; }
|
|
public string CognomeNome { get; set; }
|
|
public DateTime? Entrata1 { get; set; }
|
|
public DateTime? Uscita1 { get; set; }
|
|
public DateTime? Entrata2 { get; set; }
|
|
public DateTime? Uscita2 { get; set; }
|
|
public DateTime? Entrata3 { get; set; }
|
|
public DateTime? Uscita3 { get; set; }
|
|
public DateTime? Entrata4 { get; set; }
|
|
public DateTime? Uscita4 { get; set; }
|
|
public double? HLav { get; set; }
|
|
public int? MinLav { get; set; }
|
|
public int? MinOrd { get; set; }
|
|
public int? MinNonLav { get; set; }
|
|
public int? MinStra { get; set; }
|
|
public int? MinPerm { get; set; }
|
|
public int? MinFer { get; set; }
|
|
public int? MinMal { get; set; }
|
|
public int? MinFest { get; set; }
|
|
public int? MinCassa { get; set; }
|
|
public int? Min104 { get; set; }
|
|
public int? MinMpp { get; set; }
|
|
public int? MinArcoPres { get; set; }
|
|
public bool? IsOkTim { get; set; }
|
|
public bool? IsOkApp { get; set; }
|
|
public bool? Block { get; set; }
|
|
public string ChkFunCod { get; set; }
|
|
public string ChkFunRes { get; set; }
|
|
public int? IsOk { get; set; }
|
|
public int IsOkLav { get; set; }
|
|
public double? HGiust { get; set; }
|
|
public decimal TempRil { get; set; }
|
|
}
|
|
}
|