using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity.workflowDefine { /// /// 步骤操作 /// public class Action { public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 输入输入设定 /// public List inputValuesSettings { get; set; } /// /// 操作界面 /// public string InputForm { get; set; } /// /// 所属步骤Id /// public int StepId { get; set; } public Step step { get; set; } /// /// 完成操作时调用的对象类型 /// public String OnActionObjectType { get; set; } } }