箱库存变更方法

This commit is contained in:
tongfei
2023-11-15 09:34:42 +08:00
parent 622e5d3b2b
commit e07c762cd3
12 changed files with 248 additions and 34 deletions

View File

@@ -19,7 +19,11 @@ namespace WMS.Web.Domain.Mappers
//移箱映射
CreateMap<BoxInventoryMoveGenerateDto, BoxInventory>();
CreateMap<BoxDetails, BoxInventoryDetails>() ;
CreateMap<BoxDetails, BoxInventoryDetails>() ;
//出入库回退上下架映射
CreateMap<BoxInventoryBackGenerateDto, BoxInventory>();
CreateMap<BoxInventoryBackDetailsGenerateDto, BoxInventoryDetails>();
}
}
}