17 lines
537 B
C#
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);
|
|
}
|
|
} |