外协提升二楼入库、erp包材入库同步、erp重发调拨出库处理、电梯优化

This commit is contained in:
2024-08-28 16:03:35 +08:00
parent 7809aefb9b
commit 68f4b5c5af
16 changed files with 485 additions and 14 deletions

View File

@@ -0,0 +1,33 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class MaterialTransferDistributeSCWToZCCInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 来源单据id(转库单子表)
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 载具条码
/// </summary>
public string? carry_code { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal qty { get; set; }
}
}