Asoka.Wang 2b3f9acdce 123
2025-09-22 19:09:47 +08:00

33 lines
861 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.

namespace NPP.SmartSchedue.Api.Contracts.Services.Integration.Input
{
/// <summary>
/// 任务删除操作输入
/// </summary>
public class WorkOrderDeleteOperationInput
{
/// <summary>
/// 任务ID
/// </summary>
public long TaskId { get; set; }
/// <summary>
/// 是否软删除true=软删除false=物理删除)
/// </summary>
public bool IsSoftDelete { get; set; } = true;
/// <summary>
/// 删除原因
/// </summary>
public string DeleteReason { get; set; } = string.Empty;
/// <summary>
/// 操作员用户ID
/// </summary>
public long OperatorUserId { get; set; }
/// <summary>
/// 操作员姓名
/// </summary>
public string OperatorName { get; set; }
}
}