namespace learun.workflow { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.11.22 /// 描 述:工作流线段 /// public class NWFLineInfo { /// /// 线条Id /// public string id { get; set; } /// /// 线条名称 /// public string name { get; set; } /// /// 开始端节点ID /// public string from { get; set; } /// /// 结束端节点ID /// public string to { get; set; } /// /// 通过策略 1.所有情况都通过 2.自定义设置(默认该值为1) /// public string strategy { get; set; } /// /// 自定义通过策略 agree 同意 disagree 不同意 lrtimeout 超时 /// public string agreeList { get; set; } /// /// 绑定的操作类型sql interface ioc /// public string operationType { get; set; } /// /// 绑定数据ID /// public string dbId { get; set; } /// /// 绑定的sql语句 /// public string strSql { get; set; } /// /// 绑定的sql语句(撤销的时候执行) /// public string strSqlR { get; set; } /// /// 绑定的接口 /// public string strInterface { get; set; } /// /// 绑定的接口(撤销的时候执行) /// public string strInterfaceR { get; set; } /// /// 绑定的ioc名称 /// public string iocName { get; set; } /// /// 绑定的ioc名称(撤销的时候执行) /// public string iocNameR { get; set; } } }