51 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Learun.Application.WorkFlow
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2018.12.05
/// 描 述:流程绑定方法参数
/// </summary>
public class WfMethodParameter
{
/// <summary>
/// 流程进程Id
/// </summary>
public string processId { get; set; }
/// <summary>
/// 子流程进程主键
/// </summary>
public string childProcessId { get; set; }
/// <summary>
/// 当前任务Id
/// </summary>
public string taskId { get; set; }
/// <summary>
/// 当前节点名称
/// </summary>
public string nodeName { get; set; }
/// <summary>
/// 操作码
/// </summary>
public string code { get; set; }
/// <summary>
/// 当前操作用户
/// </summary>
public string userId { get; set; }
/// <summary>
/// 当前用户账号
/// </summary>
public string userAccount { get; set; }
/// <summary>
/// 当前用户公司
/// </summary>
public string companyId { get; set; }
/// <summary>
/// 当前用户部门
/// </summary>
public string departmentId { get; set; }
}
}