|
@@ -1,5 +1,6 @@
|
|
using Hotline.Share.Dtos.File;
|
|
using Hotline.Share.Dtos.File;
|
|
using Hotline.Share.Enums.FlowEngine;
|
|
using Hotline.Share.Enums.FlowEngine;
|
|
|
|
+using XF.Utility.EnumExtensions;
|
|
|
|
|
|
namespace Hotline.Share.Dtos.FlowEngine.Workflow
|
|
namespace Hotline.Share.Dtos.FlowEngine.Workflow
|
|
{
|
|
{
|
|
@@ -115,13 +116,17 @@ namespace Hotline.Share.Dtos.FlowEngine.Workflow
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 办理方式
|
|
/// 办理方式
|
|
/// </summary>
|
|
/// </summary>
|
|
- public EHandleMode? HandleMode { get; set; } = EHandleMode.Normal;
|
|
|
|
|
|
+ public EHandleMode? HandleMode { get; set; }
|
|
|
|
+
|
|
|
|
+ public string? HandleModeText => HandleMode.HasValue ? HandleMode.GetDescription() : "";
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 审核结果(非审批流程无意义)
|
|
/// 审核结果(非审批流程无意义)
|
|
/// </summary>
|
|
/// </summary>
|
|
public EReviewResult ReviewResult { get; set; }
|
|
public EReviewResult ReviewResult { get; set; }
|
|
|
|
|
|
|
|
+ public string ReviewResultText => ReviewResult.GetDescription();
|
|
|
|
+
|
|
#endregion
|
|
#endregion
|
|
|
|
|
|
#region Definition
|
|
#region Definition
|