//------------------------------------------------------------------------------
// 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
//------------------------------------------------------------------------------
using System.Collections.Generic;
namespace OpenAuth.App.Request
{
///
/// 创建或修改加签信息
///
public class AddApproverReq
{
///
///加签原因
///
public string Reason { get; set; }
///
///工作流实例Id
///
public string InstanceId { get; set; }
///
///类型(0顺序,1并行且,2并行或)
///
public int ApproveType { get; set; }
///
///父节点ID,应对多次加签
///
public string ParentId { get; set; }
///
///当前节点ID
///
public string ActivityId { get; set; }
///
///是否回到加签节点
/// 如果不需要,则加签完成后自动审批完成,否则还需要当前节点审批
///
public bool? ReturnToSignNode { get; set; }
public List Approvers { get; set; }
}
}