Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsCarryBindService.cs
2023-06-30 15:35:46 +08:00

18 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Dtos.VisualDev;
namespace Tnb.WarehouseMgr.Interfaces
{
/// <summary>
/// 载具绑定服务接口
/// </summary>
public interface IWmsCarryBindService
{
Task<dynamic> CarryBind(VisualDevModelDataCrInput input);
}
}