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.
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 TaskCreationRequest : TaskRequest
{
/// <summary>
/// 任务标题
/// </summary>
public string TaskTitle { get ; set ; } = string . Empty ;
/// <summary>
/// 任务描述
/// </summary>
public string? TaskDescription { get ; set ; }
/// <summary>
/// 任务接收用户ID; 此值为空时则从配置中获取
/// </summary>
public long [ ] ? RecvUserIdList { get ; set ; }
/// <summary>
/// 驳回审批理由
/// </summary>
public string? RejectReason { get ; set ; }
/// <summary>
/// 下一任务类型
/// </summary>
public TaskBaseTypeEnum ? NextType { get ; set ; }
/// <summary>
/// 是否现舱(默认null值)
/// </summary>
public bool? HasCabin { get ; set ; }
}
}