This commit is contained in:
2024-08-22 14:08:16 +08:00
parent 4ce0a58715
commit 27e67dadf3
29 changed files with 758 additions and 184 deletions

View File

@@ -0,0 +1,29 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class CheckCompleteInput
{
/// <summary>
/// 提报id
/// </summary>
public string report_id { get; set; }
/// <summary>
/// 合格数
/// </summary>
public decimal pqty { get; set; }
/// <summary>
/// 不合格数
/// </summary>
public decimal rqty { get; set; }
/// <summary>
/// 质检结果
/// </summary>
public string check_result { get; set; }
/// <summary>
/// 视觉记录
/// </summary>
public List<PrdVisionResultRecord> records { get; set; } = null;
}
}