Files
lux/EgwCoreLib.Lux.Data/DbModel/Task/JobDriverModel.cs
T
2025-10-28 12:09:41 +01:00

35 lines
938 B
C#

using EgwCoreLib.Lux.Data.DbModel.Cost;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCoreLib.Lux.Data.DbModel.Task
{
/// <summary>
/// Definizione driver di calcolo dall'Engine x la stima del CostDriver equivalente tempi/costi
/// </summary>
[Table("task_job_driver")]
public class JobDriverModel
{
[Key]
public int JobDriverID { get; set; }
/// <summary>
/// Nome variabile ricevuta
/// e.g. "LeadTime", "FlowTime"
/// </summary>
public string Name { get; set; } = "";
/// <summary>
/// Descrizione
/// e.g. "tempo netto di lavorazione", "tempo d attravesamento"
/// </summary>
public string Descript { get; set; } = "";
}
}