改箱保存

This commit is contained in:
18942506660
2023-10-26 16:52:24 +08:00
parent 7d7256281e
commit 5f4e00a436
11 changed files with 303 additions and 7 deletions

View File

@@ -0,0 +1,20 @@

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto.ChangeBoxRecord;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Services;
namespace WMS.Web.Domain.IService
{
/// <summary>
/// 改箱 移箱服务
/// </summary>
public interface IChangeMoveBoxService
{
Task<Result> Save(SaveChangeBoxRecordRequest dto, LoginInDto loginInfo);
}
}