质检模块带代码

This commit is contained in:
2024-11-08 10:42:30 +08:00
parent 755fd97ef0
commit a0d2fc5b19
11 changed files with 1196 additions and 26 deletions

View File

@@ -281,10 +281,23 @@ namespace Tnb.QcMgr.Entities.Dto
/// 单位
/// </summary>
public string unit_code { get; set; }
}
public class QcTempControlPickQualifiedQtyOutput
{
/// <summary>
/// 暂控数量
/// </summary>
public decimal? control_qty { get; set; }
public string temp_control_qty { get; set; }
/// <summary>
/// 合格数量
/// </summary>
public string qualified_qty { get; set; }
/// <summary>
/// 不合格数量
/// </summary>
public string unQualified_qty { get; set; }
}
}