机器人回调出库功能

This commit is contained in:
alex
2023-06-30 15:35:46 +08:00
parent e4a596a71f
commit 74fa55af9d
7 changed files with 208 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
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);
}
}