You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
835 B
37 lines
835 B
namespace learun.workflow
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.22
|
|
/// 描 述:流程撤销作废的时候执行的方法
|
|
/// </summary>
|
|
public class NWFCloseDo
|
|
{
|
|
/// <summary>
|
|
/// 方法执行类型sql,ioc,interface
|
|
/// </summary>
|
|
public string F_CloseDoType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行sql语句的数据库ID
|
|
/// </summary>
|
|
public string F_CloseDoDbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行sql语句
|
|
/// </summary>
|
|
public string F_CloseDoSql { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行的ioc名称
|
|
/// </summary>
|
|
public string F_CloseDoIocName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行接口
|
|
/// </summary>
|
|
public string F_CloseDoInterface { get; set; }
|
|
}
|
|
}
|