Files
WMS-Api/src/WMS.Web.Domain/IService/IBoxService.cs
18942506660 64e485622f 测试接口
2023-11-30 11:31:25 +08:00

18 lines
370 B
C#

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
{
// 同步老Ops箱信息
Task<Result> Sync(List<OpsBoxResponse> list = null);
}
}