using System; using System.Collections.Generic; using System.Text; using GxPress.Entity.WorkProcessDto; namespace GxPress.Result.App.Process { /// /// 流程定义 /// public class GetProcessResult { /// /// id /// public int Id { get; set; } /// /// 基本信息 /// /// /// 名称 /// public string Name { get; set; } /// /// 图标url /// public string IconUrl { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 表单定义 /// public List FormFields { get; set; } /// /// 是否允许用户自选审批人 /// public bool AllowApproverCheck { get; set; } /// /// 是否允许用户自选抄送人 /// public bool AllowCarbonCopy { get; set; } /// /// 系统审批人 /// /// public List ApproverCheckUserIds { get; set; } } }