This commit is contained in:
tongfei
2024-04-24 10:29:33 +08:00
10 changed files with 312 additions and 11 deletions

View File

@@ -7,6 +7,7 @@ using WMS.Web.Core.Dto.Erp.OutStock;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Dto.OutStockTask;
using WMS.Web.Core.Internal.Results;
using Microsoft.Extensions.DependencyInjection;
namespace WMS.Web.Domain.IService.Public
{
@@ -62,6 +63,12 @@ namespace WMS.Web.Domain.IService.Public
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
Task<Result<OutStockTaskInfoResponse>> GetInfo(int id, LoginInDto loginInfo);
Task<Result<OutStockTaskInfoResponse>> GetInfo(int id, LoginInDto loginInfo, IServiceScope scope = null);
/// <summary>
/// 导出详情
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
Task ExportInfo(OperateRequest dto,string fileName, LoginInDto loginInfo);
}
}