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