Asoka.Wang 21f044712c 1
2025-08-27 18:39:19 +08:00

17 lines
537 B
C#

using System.Threading.Tasks;
using NPP.SmartSchedue.Api.Contracts.Services.Integration.Input;
using NPP.SmartSchedue.Api.Contracts.Services.Integration.Output;
namespace NPP.SmartSchedue.Api.Contracts.Services.Integration
{
/// <summary>
/// 设备分配服务接口
/// </summary>
public interface IEquipmentAllocationService
{
/// <summary>
/// 智能设备分配
/// </summary>
Task<EquipmentAllocationResult> AllocateEquipmentSmartlyAsync(EquipmentAllocationInput input);
}
}