29 lines
778 B
C#
29 lines
778 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Core.DTO
|
|
{
|
|
public class InsManDayDto
|
|
{
|
|
public int IdxInsMan { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string IdxMacchina { get; set; } = "NA";
|
|
public DateTime DataRif { get; set; } = DateTime.Today;
|
|
|
|
public int PzBuoniTot { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Minuti prodotti (da TC e pz prod
|
|
/// </summary>
|
|
public decimal MinProdTot { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Rapporto record importati/totali, 0 = niente, 1 = tutto importato
|
|
/// </summary>
|
|
public double RatioImport { get; set; } = 0;
|
|
}
|
|
}
|