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

14 lines
461 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 IPersonnelAllocationService
{
Task<PersonnelAllocationResult> AllocatePersonnelSmartlyAsync(PersonnelAllocationInput input);
}
}