continuo def modelli

This commit is contained in:
Samuele Locatelli
2025-12-19 12:11:09 +01:00
parent 2a35b5b669
commit 5ed1fba104
3 changed files with 7 additions and 4 deletions
@@ -21,7 +21,7 @@ namespace EgwCoreLib.Lux.Data.DbModel.Production
public class ProductionAssignModel
{
[Key]
public int PrdoAssignID { get; set; }
public int ProdAssignID { get; set; }
/// <summary>
/// Ordine cui fa riferimento
@@ -29,8 +29,8 @@ namespace EgwCoreLib.Lux.Data.DbModel.Production
public int OrderRowID { get; set; } = 0;
/// <summary>
/// Codice macchina di riferimento
/// Codice plant di assegnazione
/// </summary>
public string MachineCod { get; set; } = "";
public string ProdPlantCod { get; set; } = "";
}
}
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
@@ -17,5 +18,7 @@ namespace EgwCoreLib.Lux.Data.DbModel.Production
[Table("production_planner")]
public class ProductionPlannerModel
{
[Key]
public int ProdPlannerID { get; set; }
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.9.2512.1911</Version>
<Version>0.9.2512.1912</Version>
</PropertyGroup>
<ItemGroup>