This commit is contained in:
tongfei
2023-11-08 14:19:18 +08:00
11 changed files with 107 additions and 12 deletions

View File

@@ -0,0 +1,15 @@

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Internal.Results;
namespace WMS.Web.Domain.IService
{
public interface IBoxService
{
// 同步老Ops箱信息
Task<Result> Sync();
}
}

View File

@@ -8,6 +8,6 @@ namespace WMS.Web.Domain.IService.Public
{
public interface IOpsService
{
Task GetBox(OpsBoxRequest request);
Task<List<OpsBoxResponse>> GetBox(OpsBoxRequest request);
}
}