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 { /// /// 设备分配服务接口 /// public interface IEquipmentAllocationService { /// /// 智能设备分配 /// Task AllocateEquipmentSmartlyAsync(EquipmentAllocationInput input); } }