调整命名空间

This commit is contained in:
2023-05-18 18:21:10 +08:00
parent d2546bafe0
commit 323b0148af
5 changed files with 13 additions and 12 deletions

View File

@@ -70,7 +70,7 @@ namespace Tnb.ProductionMgr
if (dic.ContainsKey("mold_id"))
{
var moldId = dic["mold_id"]?.ToString();
var mold = await db.Queryable<Entities.ToolMolds>().FirstAsync(it => it.id == moldId);
var mold = await db.Queryable<ToolMolds>().FirstAsync(it => it.id == moldId);
if (mold != null)
{
row["mold_id"] = $"{mold.mold_code}/{mold.mold_name}";