瀏覽代碼

Merge branch 'test' of http://110.188.24.182:10023/Fengwo/hotline into test

田爽 5 月之前
父節點
當前提交
b59f99a5d0

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

@@ -343,6 +343,11 @@ public abstract class StepBasicEntity : CreationEntity
     /// </summary>
     [SugarColumn(ColumnDataType = "json", IsJson = true, IsNullable = true)]
     public List<FileJson>? FileJson { get; set; }
+    
+    /// <summary>
+    /// 发起会签
+    /// </summary>
+    public bool IsStartCountersign { get; set; }
 
     #endregion
     #region 创建时赋值
@@ -361,11 +366,6 @@ public abstract class StepBasicEntity : CreationEntity
 
     public EFlowDirection? FlowDirection { get; set; }
 
-    /// <summary>
-    /// 发起会签
-    /// </summary>
-    public bool IsStartCountersign { get; set; }
-
     #endregion
     #endregion
 

+ 1 - 0
src/Hotline/FlowEngine/Workflows/WorkflowStep.cs

@@ -134,6 +134,7 @@ public class WorkflowStep : StepBasicEntity
         IsSms = false;
         Opinion = null;
         FileJson = new();
+        IsStartCountersign = false;
     }
 
     ///// <summary>