老ops箱信息对接

This commit is contained in:
18942506660
2023-11-08 14:15:58 +08:00
parent 333f0a0c10
commit dee7e809a5
10 changed files with 106 additions and 11 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();
}
}