任务单作废接口

This commit is contained in:
tongfei
2023-11-15 15:20:34 +08:00
parent eb4d812b9b
commit b5af69bb1a
6 changed files with 90 additions and 1 deletions

View File

@@ -2,7 +2,9 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.InStockTask;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Internal.Results;
namespace WMS.Web.Domain.IService
@@ -64,5 +66,13 @@ namespace WMS.Web.Domain.IService
/// <param name="billNos"></param>
/// <returns></returns>
Task<Result> Sysn(List<string> billNos = null);
/// <summary>
/// 作废
/// </summary>
/// <param name="dto"></param>
/// <param name="loginInfo"></param>
/// <returns></returns>
Task<Result> Repeal(OperateRequest dto, LoginInDto loginInfo);
}
}