OpenAuth.Net/OpenAuth.App/FlowApproverApp/Request/AddApproverReq.cs

53 lines
1.5 KiB
C#
Raw Normal View History

2024-09-25 21:30:56 +08:00
//------------------------------------------------------------------------------
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
//------------------------------------------------------------------------------
2024-09-25 21:54:00 +08:00
using System.Collections.Generic;
2024-09-25 21:30:56 +08:00
namespace OpenAuth.App.Request
{
/// <summary>
/// 创建或修改加签信息
/// </summary>
public class AddApproverReq
{
/// <summary>
///加签原因
/// </summary>
public string Reason { get; set; }
/// <summary>
///工作流实例Id
/// </summary>
public string InstanceId { get; set; }
/// <summary>
///类型0顺序1并行且2并行或
/// </summary>
public int ApproveType { get; set; }
/// <summary>
///父节点ID应对多次加签
/// </summary>
public string ParentId { get; set; }
/// <summary>
///当前节点ID
/// </summary>
public string ActivityId { get; set; }
/// <summary>
///是否回到加签节点
/// <para>如果不需要,则加签完成后自动审批完成,否则还需要当前节点审批</para>
/// </summary>
public bool? ReturnToSignNode { get; set; }
2024-09-25 21:30:56 +08:00
2024-09-25 21:54:00 +08:00
public List<AddApproverDtlReq> Approvers { get; set; }
2024-09-25 21:30:56 +08:00
}
}