正向追溯相关接口

This commit is contained in:
2023-08-21 17:31:42 +08:00
parent 0c0a36214f
commit 6a5edb5e88
6 changed files with 197 additions and 11 deletions

View File

@@ -64,5 +64,21 @@ public partial class PrdMaterialReceiptD : BaseEntity<string>
/// 已投料数量
/// </summary>
public decimal feeding_num { get; set; }
/// <summary>
/// 供应商
/// </summary>
[SugarColumn(IsIgnore = true)]
public string supplier_id { get; set; }
/// <summary>
/// 入库时间
/// </summary>
[SugarColumn(IsIgnore = true)]
public DateTime instock_time { get; set; }
/// <summary>
/// 检验结论
/// </summary>
[SugarColumn(IsIgnore = true)]
public string check_conclusion { get; set; }
}