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.
42 lines
935 B
42 lines
935 B
namespace learun.workflow
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.22
|
|
/// 描 述:工作流审核者
|
|
/// </summary>
|
|
public class NWFAuditor
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核者主键
|
|
/// </summary>
|
|
public string auditorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核者账号
|
|
/// </summary>
|
|
public string auditorAccount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核者名称
|
|
/// </summary>
|
|
public string auditorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核者类型1.岗位2.角色3.用户4.上下级5.表单指定字段6.某一个节点执行人
|
|
/// </summary>
|
|
public int type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 限制条件1.同一个部门2.同一个公司
|
|
/// </summary>
|
|
public int? condition { get; set; }
|
|
}
|
|
}
|