You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using DS.Module.Core;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.TaskInteraction.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务台状态更新参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TaskUpdateRequest : TaskRequest
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public TaskStatusEnum TaskStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当任务完成时,是否根据任务类型自动创建下一任务;默认为true
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool AutoCreateNext { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 驳回审批理由
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? RejectReason { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? TaskDesc { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|