PC原材料调拨出库与PDA签收逻辑完善

This commit is contained in:
2024-08-20 01:26:44 +08:00
parent 06610549b0
commit 29fd420bb2
9 changed files with 248 additions and 24 deletions

View File

@@ -5,6 +5,14 @@
/// </summary>
public class CarryMaterialInventoryInput
{
/// <summary>
/// 业务类型
/// </summary>
public string? biz_type { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 仓库编码
/// </summary>

View File

@@ -24,6 +24,11 @@ namespace Tnb.WarehouseMgr.Entities.Dto
/// <summary>
/// 载具
/// </summary>
public List<string> carrys { get; set; }
public List<RawmatTransferoutstockDetailInput> carrys { get; set; }
}
public class RawmatTransferoutstockDetailInput
{
public string carry_code { get; set; }
}
}