增加心跳接口

This commit is contained in:
2023-03-30 11:39:17 +08:00
parent 401b717fc2
commit 0a6fba29cd
8 changed files with 88 additions and 15 deletions

View File

@@ -0,0 +1,29 @@
using JNPF.DependencyInjection;
using Newtonsoft.Json.Linq;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class FlowTemplateModel
{
/// <summary>
/// id.
/// </summary>
public string id { get; set; } = "";
/// <summary>
/// 流程id.
/// </summary>
public string flowId { get; set; } = "";
/// <summary>
/// 流程名称.
/// </summary>
public string fullName { get; set; } = "";
/// <summary>
/// 子节点.
/// </summary>
public FlowTemplateJsonModel? flowTemplateJson { get; set; }
}