bug处理,二楼空载具料架入库

This commit is contained in:
2024-06-06 16:42:31 +08:00
parent 9e177b69f7
commit 439e000bd1
57 changed files with 457 additions and 1196 deletions

View File

@@ -0,0 +1,46 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class MaterialTransferRackInstockInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 料架号
/// </summary>
public string? carry_code { get; set; }
/// <summary>
/// 空料箱
/// </summary>
public List<MaterialTransferRackInstockDetail> details { get; set; }
/// <summary>
/// 起始库位
/// </summary>
public string? startlocation_id { get; set; }
/// <summary>
/// 判断料箱是否为空
/// </summary>
public bool judgeEmptyCarry { get; set; } = true;
}
public class MaterialTransferRackInstockDetail
{
/// <summary>
/// 料箱号
/// </summary>
public string? carry_code { get; set; }
}
}