增加箱差出库单信息

This commit is contained in:
18942506660
2023-12-18 11:43:06 +08:00
parent d4c9bedd24
commit 347d12736e
3 changed files with 56 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.OutStock;
using WMS.Web.Domain.Entitys;
@@ -23,5 +24,7 @@ namespace WMS.Web.Domain.Infrastructure
Task<bool> EditEntityList(List<OutStock> entitys, bool isTransaction = true);
//获取详情
Task<OutStockInfoResponse> GetInfo(int id);
//获取出库单明细
Task<List<BoxDetailResponse>> GetDetailsByBoxId(int boxId);
}
}