质检模块

This commit is contained in:
qianjiawei
2023-06-16 17:50:37 +08:00
parent 4e7e397802
commit 570f0a170f
3 changed files with 9 additions and 0 deletions

View File

@@ -111,5 +111,7 @@ namespace Tnb.QcMgr.Entities.Dto
public string isexec { get; set; }
public string customer { get; set; }
public string result { get; set; }
public string postItemForm { get; set; }
}
}

View File

@@ -102,6 +102,12 @@ namespace Tnb.QcMgr.Entities
/// 结论
/// </summary>
public string? result { get; set; }
/// <summary>
/// 数据
/// </summary>
public string? postdata { get; set; }
}

View File

@@ -175,6 +175,7 @@ namespace Tnb.QcMgr
QcCheckExecD.isexec = item.isexec;
QcCheckExecD.custom = item.customer;
QcCheckExecD.result = item.result;
QcCheckExecD.postdata = item.postItemForm;
}
}
await db.Ado.BeginTranAsync();