paiban/NPP.SmartSchedue.Api.Contracts/Services/Integration/ISmartScheduleOrchestratorService.cs
Asoka.Wang 2b3f9acdce 123
2025-09-22 19:09:47 +08:00

15 lines
578 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Threading.Tasks;
using NPP.SmartSchedue.Api.Contracts.Services.Integration.Input;
namespace NPP.SmartSchedue.Api.Contracts.Services.Integration;
public interface ISmartScheduleOrchestratorService
{
/// <summary>
/// 修改整合记录中的任务分配
/// 根据选中的人员修改任务的指定人员ID和姓名并更新整合记录
/// </summary>
/// <param name="input">任务修改输入参数</param>
/// <returns>修改结果</returns>
Task<bool> ModifyIntegrationRecordTaskAsync(IntegrationRecordTaskModifyInput input);
}