2021-04-15 00:40:30 +08:00
|
|
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.Response
|
|
|
|
|
{
|
|
|
|
|
public class FlowVerificationResp :FlowInstance
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预览表单数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The FRM data HTML.</value>
|
|
|
|
|
public string FrmPreviewHtml
|
|
|
|
|
{
|
|
|
|
|
get { return FormUtil.Preview(this); }
|
|
|
|
|
}
|
2021-04-26 12:25:37 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 下个节点的执行权限方式
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NextNodeDesignateType { get; set; }
|
2021-07-11 15:21:17 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前节点的可写表单Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string[] CanWriteFormItemIds { get; set; }
|
2021-04-15 00:40:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|