接口优化

This commit is contained in:
tongfei
2023-11-17 17:24:56 +08:00
parent b58c9957e4
commit 9daa9ab775
7 changed files with 29 additions and 3 deletions

View File

@@ -47,12 +47,12 @@ namespace WMS.Web.Domain.Mappers
//箱库存详情-映射
CreateMap<BoxInventoryResponse, BoxInventory>()
CreateMap<BoxInventory, BoxInventoryResponse>()
.ForMember(x=>x.Details,t=>t.Ignore());
CreateMap<BoxInventoryDetailsResponse, BoxInventoryDetails>();
CreateMap<BoxInventoryDetails, BoxInventoryDetailsResponse>();
}
}