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 ;
using DS.WMS.Core.Op.Entity ;
namespace DS.WMS.Core.Op.Dtos.TaskInteraction
{
/// <summary>
/// 任务台创建参数
/// </summary>
public class TaskCreationRequest
{
/// <summary>
/// 业务ID
/// </summary>
public long BusinessId { get ; set ; }
/// <summary>
/// 业务类型
/// </summary>
public BusinessType BusinessType { get ; set ; }
/// <summary>
/// 任务类型
/// </summary>
public TaskBaseTypeEnum TaskType { get ; set ; }
/// <summary>
/// 任务标题
/// </summary>
public string TaskTitle { get ; set ; } = string . Empty ;
/// <summary>
/// 任务描述
/// </summary>
public string? TaskDescription { get ; set ; }
/// <summary>
/// 任务接收用户ID; 此值为空时则默认为任务发起者
/// </summary>
public long [ ] ? RecvUserIdList { get ; set ; }
}
}