init commit

This commit is contained in:
路 范
2022-03-30 17:54:33 +08:00
parent df01841625
commit 904bdd16cd
500 changed files with 217251 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace RoadFlow.Model.FlowRunModel
{
/// <summary>
/// 步骤子流程实体
/// </summary>
public class StepSubFlow
{
/// <summary>
/// 子流程ID
/// </summary>
public Guid SubFlowId { get; set; }
/// <summary>
/// 子流程策略0子流程完成才能提交1子流程发起即可提交2子流程完成自动提交
/// </summary>
public int SubFlowStrategy { get; set; }
/// <summary>
/// 实例类型 0所有人同一实例 1每个人单独实例
/// </summary>
public int TaskType { get; set; }
public override string ToString()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
}
}
}