2018-03-26 00:34:49 +08:00
|
|
|
|
namespace OpenAuth.App.Request
|
|
|
|
|
{
|
|
|
|
|
public class VerificationReq
|
|
|
|
|
{
|
|
|
|
|
public string FlowInstanceId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1:同意;2:不同意;3:驳回
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VerificationFinally { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审核意见
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VerificationOpinion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-03-30 17:35:18 +08:00
|
|
|
|
/// 驳回的步骤,即驳回到的节点ID
|
2018-03-26 00:34:49 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string NodeRejectStep { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 驳回类型。null:使用节点配置的驳回类型/0:前一步/1:第一步/2:指定节点,使用NodeRejectStep
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NodeRejectType { get; set; }
|
2018-03-26 00:34:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|