非采购上架-箱库存

This commit is contained in:
tongfei
2023-11-15 11:47:44 +08:00
parent 69576224da
commit 1fe0ab72ea
10 changed files with 419 additions and 13 deletions

View File

@@ -24,6 +24,14 @@ namespace WMS.Web.Domain.Mappers
//出入库回退上下架映射
CreateMap<BoxInventoryBackGenerateDto, BoxInventory>();
CreateMap<BoxInventoryBackDetailsGenerateDto, BoxInventoryDetails>();
//采购上架映射
CreateMap<BoxInventoryPurchaseGenerateDto, BoxInventory>();
CreateMap<BoxInventoryPurchaseDetailsGenerateDto, BoxInventoryDetails>();
//采购上架映射
CreateMap<BoxInventoryNoPurchaseGenerateDto, BoxInventory>();
CreateMap<BoxInventoryNoPurchaseDetailsGenerateDto, BoxInventoryDetails>();
}
}
}