原材料转库逻辑变更

This commit is contained in:
2024-05-24 14:24:21 +08:00
parent 2a66f244dd
commit 36622b35cf
8 changed files with 376 additions and 112 deletions

View File

@@ -13,13 +13,25 @@
/// 创建用户
/// </summary>
public string create_id { get; set; }
///// <summary>
///// 物料数量
///// </summary>
//public decimal qty { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 物料数量
/// </summary>
public decimal qty { get; set; }
/// <summary>
/// 托盘数
/// </summary>
public int palletCount { get; set; }
/// <summary>
/// 批次
/// </summary>
public string? code_batch { get; set; }
}
}