21 lines
516 B
C#
21 lines
516 B
C#
![]() |
using Seyounth.Hyosung.Data.Entities;
|
||
|
using Seyounth.Hyosung.Data.Models;
|
||
|
|
||
|
namespace Seyounth.Hyosung.Data.Services;
|
||
|
|
||
|
public interface IAgvBinService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取可用的库位信息
|
||
|
/// </summary>
|
||
|
/// <param name="height"></param>
|
||
|
/// <returns></returns>
|
||
|
Task<AgvBinEntity> GetAvailableBin(int height);
|
||
|
|
||
|
/// <summary>
|
||
|
/// 绑定相应的库
|
||
|
/// </summary>
|
||
|
/// <param name="entity"></param>
|
||
|
/// <returns></returns>
|
||
|
Task BindAsync(AgvBinEntity entity);
|
||
|
}
|