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 string Condition { get; set; } /// /// 下一步骤 /// public step nextStep { get; set; } /// /// 下一步骤Id /// public int nextStepId { get; set; } } }