using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Config
{
public class WFUserInfo
{
///
/// ID
///
public string Id { get; set; }
///
/// 账号
///
public string Account { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 公司
///
public string CompanyId { get; set; }
///
/// 公司名称
///
public string CompanyName { get; set; }
///
/// 部门
///
public string DepartmentId { get; set; }
///
/// 部门名称
///
public string DepartmentName { get; set; }
///
/// 审核顺序
///
public int Sort { get; set; }
///
/// 是否需要审核
///
public bool IsAwait { get; set; }
///
/// 是否没有审核人
///
public bool NotHasUser { get; set; }
///
/// 上一次审批人是否同意(这边的定义为除了驳回的)
///
public bool IsAgree { get; set; }
///
/// 是否第一次审核
///
public bool IsNew { get; set; }
///
/// 任务状态 1.激活 2.待激活 3.完成 4.关闭 5.加签状态 6.转移给其他人
///
public int State { get; set; }
}
}