using System; using System.Collections.Generic; using GxPress.Entity.WorkProcessDto; using GxPress.EnumConst; namespace GxPress.Result.App.Flow { /// /// 流程 /// public class FlowResult { /// /// 流程Id /// public int ProcessId { get; set; } /// /// 头像地址 /// public string AvatarUrl { get; set; } /// /// 用户名 /// public string UserName { get; set; } /// /// 流程项名称 /// public string Name { get; set; } /// /// 状态 /// public FlowState State { get; set; } /// /// 主流程状态 /// public FlowState FlowState { get; set; } /// /// 审批编号 /// public string No { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } /// /// 添加时间 /// public DateTime? CreatedDate { get; set; } /// /// 表单字段 /// public List FormFields { get; set; } /// /// 流程节点 /// public List Nodes { get; set; } /// /// 抄送人 /// public string CarbonCopies { get; set; } /// /// 审批意见 /// public List CheckMessages { get; set; } /// /// 审核人列表 /// public List ApproverCheckUsers { get; set; } /// /// 抄送人列表 /// public List CarbonCopyUsers { get; set; } /// /// 流程名称 /// /// public string ProcessName { get; set; } /// /// 新版附件 /// /// public List FlowAttachments { get; set; } /// /// 创建者ID /// /// public int UserId { get; set; } /// /// 是否是发起人 /// /// public bool IsAdmin { get; set; } } }