即时库存-服务

This commit is contained in:
tongfei
2023-11-17 13:33:10 +08:00
parent fc31334876
commit 619cea05f2
8 changed files with 225 additions and 2 deletions

View File

@@ -41,9 +41,10 @@ namespace WMS.Web.Domain.Mappers
CreateMap<InventoryInOutDetailsGenerateDto, InventoryInOutDetails>()
.ForMember(x => x.OrderType, ops => ops.MapFrom(x => x.OrderType))
.ForMember(x => x.Type, ops => ops.MapFrom(x => x.InventoryInOutType));
//即时库存明细-映射
CreateMap<InventoryDetailsGenerateDto, InventoryDetails>();
}
}
}