using Seyounth.Hyosung.Data.Entities;
using Seyounth.Hyosung.Data.Models;
namespace Seyounth.Hyosung.Data.Services;
public interface IAgvBinService
{
///
/// 获取可用的库位信息
///
///
///
Task GetAvailableBin(int height);
///
/// 绑定相应的库
///
///
///
Task BindAsync(AgvBinEntity entity);
}