//------------------------------------------------------------------------------ // 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 //------------------------------------------------------------------------------ namespace OpenAuth.App.Request { /// /// 创建或修改加签信息 /// public class AddApproverReq { /// ///Id /// public string Id { get; set; } /// ///加签原因 /// public string Reason { get; set; } /// ///审批人 /// public string ApproverName { get; set; } /// ///工作流实例Id /// public string InstanceId { get; set; } /// ///审批人ID /// public string ApproverId { get; set; } /// ///类型(0顺序,1并行且,2并行或) /// public int ApproveType { get; set; } /// ///父节点ID,应对多次加签 /// public string ParentId { get; set; } /// ///当前节点ID /// public string ActivityId { get; set; } /// ///顺序号(当类型为0时) /// public int? OrderNo { get; set; } } }