生产投料

This commit is contained in:
2023-06-16 16:59:53 +08:00
parent 3d60c3b912
commit 3cb377cb86
9 changed files with 352 additions and 11 deletions

View File

@@ -39,4 +39,19 @@ public partial class PrdMaterialReceiptD : BaseEntity<string>
/// </summary>
public string? unit_id { get; set; }
/// <summary>
/// 载具id
/// </summary>
public string carry_id { get; set; } = string.Empty;
/// <summary>
/// 是否全部投料
/// </summary>
public int is_all_feeding { get; set; }
/// <summary>
/// 已投料数量
/// </summary>
public decimal feeding_num { get; set; }
}