xf 1 year ago
parent
commit
a179890a84

+ 1 - 1
src/Hotline/FlowEngine/Workflows/StepBasicEntity.cs

@@ -32,7 +32,7 @@ public abstract class StepBasicEntity : CreationEntity
     /// <summary>
     /// 是否实际办理过该工单
     /// </summary>
-    public bool? IsActualHandled { get; set; }
+    public bool IsActualHandled { get; set; }
 
     #region 接办
 

+ 2 - 2
src/Hotline/FlowEngine/Workflows/Workflow.cs

@@ -325,10 +325,10 @@ public partial class Workflow : CreationEntity
     #region 会签实际办理对象
 
     [SugarColumn(ColumnDataType = "json", IsJson = true)]
-    public List<string>? CsActualHandleOrgIds { get; set; } = new();
+    public List<string> CsActualHandleOrgIds { get; set; } = new();
 
     [SugarColumn(ColumnDataType = "json", IsJson = true)]
-    public List<string>? CsActualHandleUserIds { get; set; } = new();
+    public List<string> CsActualHandleUserIds { get; set; } = new();
 
     #endregion
 

+ 2 - 2
src/Hotline/Orders/Order.cs

@@ -332,10 +332,10 @@ namespace Hotline.Orders
         #region 会签实际办理对象
 
         [SugarColumn(ColumnDataType = "json", IsJson = true)]
-        public List<string>? CsActualHandleOrgIds { get; set; } = new();
+        public List<string> CsActualHandleOrgIds { get; set; } = new();
 
         [SugarColumn(ColumnDataType = "json", IsJson = true)]
-        public List<string>? CsActualHandleUserIds { get; set; } = new();
+        public List<string> CsActualHandleUserIds { get; set; } = new();
 
         #endregion