|
@@ -1,4 +1,5 @@
|
|
|
using Hotline.Share.Enums.FlowEngine;
|
|
|
+using System.ComponentModel;
|
|
|
|
|
|
namespace Hotline.Share.Dtos.FlowEngine;
|
|
|
|
|
@@ -49,14 +50,31 @@ public class NextWorkflowDto : BasicWorkflowDto
|
|
|
|
|
|
/// <summary>
|
|
|
/// 已与市民沟通
|
|
|
+ /// 已与市民电话联系,确认办理结果
|
|
|
/// </summary>
|
|
|
+ [Description("已与市民电话联系,确认办理结果")]
|
|
|
public bool? RealIsContacted { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 已与市民现场沟通
|
|
|
+ /// 已赴现场处置,将处理结果告知市民
|
|
|
/// </summary>
|
|
|
+ [Description("已赴现场处置,将处理结果告知市民")]
|
|
|
public bool? RealContactLocale { get; set; }
|
|
|
|
|
|
+ #region task_298
|
|
|
+ /// <summary>
|
|
|
+ /// 其它
|
|
|
+ /// </summary>
|
|
|
+ [Description("其它")]
|
|
|
+ public bool? Other { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 其它原因
|
|
|
+ /// </summary>
|
|
|
+ [Description("其它原因")]
|
|
|
+ public string? OtherRemark { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 是否紧急
|
|
|
/// </summary>
|
|
@@ -77,4 +95,5 @@ public class NextWorkflowDto : BasicWorkflowDto
|
|
|
/// </summary>
|
|
|
public string? LeaderSMSKey { get; set; }
|
|
|
#endregion
|
|
|
+ #endregion
|
|
|
}
|