11 lines
235 B
C#
Raw Permalink Normal View History

2025-03-16 03:17:36 +08:00
namespace Seyounth.Hyosung.Core.Agv;
public interface IHyosungAgvService
{
/// <summary>
/// 入库
/// </summary>
/// <param name="trayCode"></param>
/// <returns></returns>
2025-03-19 20:55:31 +08:00
Task StorageAsync(long trayCode);
2025-03-16 03:17:36 +08:00
}