kyy
昨天 fd8a1399090dd3a57b557a7c8d270362397bc21f
Dto/service/WorkflowRequestDto.cs
@@ -1,39 +1,42 @@
namespace NewPdaSqlServer.Dto.service;
using NewPdaSqlServer.Dto.@base;
namespace NewPdaSqlServer.Dto.service;
public class WorkflowRequestDto
{
    /// <summary>
    ///     用户认证令牌
    /// 用户认证令牌
    /// </summary>
    public string Token { get; set; }
    /// <summary>
    ///     原始用户ID(加密前)
    /// 原始用户ID(加密前)
    /// </summary>
    public string UserId { get; set; }
    /// <summary>
    ///     流程ID(必填)
    /// 流程ID(必填)
    /// </summary>
    public int WorkflowId { get; set; }
    /// <summary>
    ///     流程标题(必填)
    /// 流程标题(必填)
    /// </summary>
    public string RequestName { get; set; }
    /// <summary>
    ///     主表数据(必填)
    /// 主表数据(必填)
    /// </summary>
    public Dictionary<string, object> MainData { get; set; }
    /// <summary>
    ///     明细表数据(选填)
    /// 明细表数据(选填)
    /// </summary>
    public Dictionary<string, object> DetailData { get; set; }
    /// <summary>
    ///     其他参数(选填)
    /// 其他参数(选填)
    /// </summary>
    public Dictionary<string, object> OtherParams { get; set; }
}