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