using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity.workflowDefine { /// /// 步骤转移条件 /// public class TrasferCondition { public int Id { get; set; } /// /// 所属步骤 /// public Step Step { get; set; } /// /// 所属步骤Id /// public int? StepId{get;set;} /// /// 转移条件 /// public string Condition { get; set; } /// /// 下一步骤 /// public Step nextStep { get; set; } /// /// 下一步骤Id /// public int nextStepId { get; set; } } }