28 lines
691 B
C#
28 lines
691 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Integration.Input
|
|
{
|
|
/// <summary>
|
|
/// 任务取消操作输入
|
|
/// </summary>
|
|
public class WorkOrderCancelOperationInput
|
|
{
|
|
/// <summary>
|
|
/// 任务ID
|
|
/// </summary>
|
|
public long TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 取消原因
|
|
/// </summary>
|
|
public string CancelReason { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 操作员用户ID
|
|
/// </summary>
|
|
public long OperatorUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作员姓名
|
|
/// </summary>
|
|
public string OperatorName { get; set; }
|
|
}
|
|
} |