26 lines
683 B
C#
26 lines
683 B
C#
namespace EgwCoreLib.Lux.Data.DbModel.Job
|
|
{
|
|
/// <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; } = "";
|
|
|
|
}
|
|
}
|