14 lines
461 B
C#
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);
|
|
}
|
|
} |