出库单调整

This commit is contained in:
18942506660
2023-10-28 10:00:02 +08:00
parent f75aafdd35
commit cff81fe647
6 changed files with 178 additions and 9 deletions

View File

@@ -1,6 +1,11 @@
using System;

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Dto.OutStock;
using WMS.Web.Core.Internal.Results;
namespace WMS.Web.Domain.IService
{
@@ -9,5 +14,7 @@ namespace WMS.Web.Domain.IService
/// </summary>
public interface IOutStockService
{
//出库单保存
Task<Result> Save(List<SaveOutStockRequest> dto, LoginInDto loginInfo);
}
}