|
@@ -10,6 +10,13 @@ namespace Hotline.Share.Dtos.FlowEngine
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 业务模块名称
|
|
|
+ /// </summary>
|
|
|
+ public string? ModuleName { get; set; }
|
|
|
+
|
|
|
+ public string? ModuleCode { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 到期时间
|
|
|
/// </summary>
|
|
@@ -25,11 +32,36 @@ namespace Hotline.Share.Dtos.FlowEngine
|
|
|
/// <summary>
|
|
|
/// 到达当前节点时间(stepBox创建时间)
|
|
|
/// </summary>
|
|
|
- public DateTime CurrentStepTime { get; set; }
|
|
|
+ public DateTime? CurrentStepTime { get; set; }
|
|
|
|
|
|
public EWorkflowStatus Status { get; set; }
|
|
|
public string StatusText => Status.ToString();
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 中心直办件
|
|
|
+ /// </summary>
|
|
|
+ public bool IsStraight { get; set; } = true;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 交办时间
|
|
|
+ /// </summary>
|
|
|
+ public DateTime AssignTime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 办理时间限制(如:24小时、7个工作日)
|
|
|
+ /// </summary>
|
|
|
+ public string TimeLimit { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 办理意见(冗余,办理中...or 最终办理意见)
|
|
|
+ /// </summary>
|
|
|
+ public string Opinion { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 接办部门
|
|
|
+ /// </summary>
|
|
|
+ public string AssignOrgs { get; set; }
|
|
|
+
|
|
|
public DefinitionDto Definition { get; set; }
|
|
|
|
|
|
/// <summary>
|