This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using DS.Module.Core;
namespace DS.WMS.Core.Op.Dtos.TaskInteraction
{
/// <summary>
/// 任务台状态更新参数
/// </summary>
public class TaskUpdateRequest : TaskRequest
/// 任务状态
public TaskStatusEnum TaskStatus { get; set; }
/// 当任务完成时,是否根据任务类型自动创建下一任务;默认为true
public bool AutoCreateNext { get; set; } = true;
}