소스 검색

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

田爽 5 달 전
부모
커밋
b59f99a5d0
2개의 변경된 파일6개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      src/Hotline/FlowEngine/Workflows/StepBasicEntity.cs
  2. 1 0
      src/Hotline/FlowEngine/Workflows/WorkflowStep.cs

+ 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>