物料签收添加子载具,扫码投料bug

This commit is contained in:
2023-07-26 15:19:09 +08:00
parent acf1d9f94a
commit 6ec90d3dbe
3 changed files with 102 additions and 25 deletions

View File

@@ -0,0 +1,12 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 扫码投料
/// </summary>
public class FeedingDetailOutput
{
public string carry_id { get; set; }
public string carry_name { get; set; }
public List<CarryCodeDetailOutput> children { get; set; }
}
}