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,46 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace RoadFlow.Model.FlowRunModel
{
/// <summary>
/// 流程连线实体
/// </summary>
public class Line
{
/// <summary>
/// 连线ID
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// 来原步骤ID
/// </summary>
public Guid FromId { get; set; }
/// <summary>
/// 到步骤ID
/// </summary>
public Guid ToId { get; set; }
/// <summary>
/// 条件判断的方法
/// </summary>
public string CustomMethod { get; set; }
/// <summary>
/// 条件判断的SQL条件
/// </summary>
public string SqlWhere { get; set; }
/// <summary>
/// 条件判断的组织机构表达式
/// </summary>
public string OrganizeExpression { get; set; }
/// <summary>
/// 判断类型 0:OR 1:AND
/// </summary>
public int JudgeType { get; set; }
public override string ToString()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this);
}
}
}