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.

29 lines
736 B
C#

This file contains ambiguous Unicode characters!

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.

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; }
}
}