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.
47 lines
928 B
47 lines
928 B
3 years ago
|
namespace learun.workflow
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.11.22
|
||
|
/// 描 述:流程人员信息
|
||
|
/// </summary>
|
||
|
public class NWFUserInfo
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户ID
|
||
|
/// </summary>
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户账号
|
||
|
/// </summary>
|
||
|
public string Account { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 公司主键
|
||
|
/// </summary>
|
||
|
public string CompanyId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 部门主键
|
||
|
/// </summary>
|
||
|
public string DepartmentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标记 0需要审核1暂时不需要审核
|
||
|
/// </summary>
|
||
|
public int Mark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否有审核人
|
||
|
/// </summary>
|
||
|
public bool noPeople { get; set; }
|
||
|
}
|
||
|
}
|