Files
number_zj/20220330_Vote/Ewide.RoadFlow/Entity/FlowRunModel/StepSubFlow.cs
2022-03-30 17:54:33 +08:00

31 lines
840 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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);
}
}
}