测试接口

This commit is contained in:
18942506660
2023-11-30 11:31:15 +08:00
parent 6d08effb54
commit 64e485622f
3 changed files with 75 additions and 16 deletions

View File

@@ -3,14 +3,15 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.IService
{
public interface IBoxService
public interface IBoxService
{
// 同步老Ops箱信息
Task<Result> Sync();
Task<Result> Sync(List<OpsBoxResponse> list = null);
}
}