|
@@ -51,7 +51,7 @@ public class Workflow : CreationEntity
|
|
|
/// </summary>
|
|
|
public EWorkflowStatus Status { get; set; }
|
|
|
|
|
|
- #region 实际办理节点,部门
|
|
|
+ #region 实际办理数据(节点,部门,意见)
|
|
|
|
|
|
/// <summary>
|
|
|
/// 实际办理节点名称(会签状态此字段保存最外层会签办理节点名称)
|
|
@@ -76,6 +76,12 @@ public class Workflow : CreationEntity
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
public string? ActualHandleOrgCode { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 实际办理意见(办理中...or 最终办理意见)
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(Length = 2000)]
|
|
|
+ public string ActualOpinion { get; set; } = "办理中...";
|
|
|
+
|
|
|
#endregion
|
|
|
|
|
|
/// <summary>
|
|
@@ -96,15 +102,9 @@ public class Workflow : CreationEntity
|
|
|
public EProcessType ProcessType { get; set; } = EProcessType.Zhiban;
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 交办时间
|
|
|
+ /// 交办时间(中心交部门办理时间)
|
|
|
/// </summary>
|
|
|
- public DateTime AssignTime { get; set; }
|
|
|
-
|
|
|
- /// <summary>
|
|
|
- /// 办理意见(冗余,办理中...or 最终办理意见)
|
|
|
- /// </summary>
|
|
|
- [SugarColumn(Length = 2000)]
|
|
|
- public string Opinion { get; set; } = "办理中...";
|
|
|
+ public DateTime CenterToOrgTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 办理人id
|
|
@@ -180,7 +180,7 @@ public class Workflow : CreationEntity
|
|
|
{
|
|
|
Status = EWorkflowStatus.Terminated;
|
|
|
CompleteTime = DateTime.Now;
|
|
|
- Opinion = opinion;
|
|
|
+ ActualOpinion = opinion;
|
|
|
}
|
|
|
|
|
|
///// <summary>
|
|
@@ -261,7 +261,7 @@ public class Workflow : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 重置最终办理意见
|
|
|
/// </summary>
|
|
|
- public void ResetOption() => Opinion = "办理中...";
|
|
|
+ public void ResetOption() => ActualOpinion = "办理中...";
|
|
|
|
|
|
/// <summary>
|
|
|
/// 重新设置办理人(删除当前待办人/部门),撤回/跳转场景,因当前办理人不是流程指定办理人
|