Browse Source

知识库下架流程

田爽 5 months ago
parent
commit
ed5534e465
1 changed files with 18 additions and 12 deletions
  1. 18 12
      src/Hotline/FlowEngine/WorkflowModules/WorkflowModuleConsts.cs

+ 18 - 12
src/Hotline/FlowEngine/WorkflowModules/WorkflowModuleConsts.cs

@@ -35,9 +35,14 @@ public class WorkflowModuleConsts
     public const string KnowledgeUpdate = "KnowledgeUpdate";
 
     /// <summary>
-    /// 知识删除
+    /// 知识下架
     /// </summary>
-    public const string KnowledgeDelete = "KnowledgeDelete";
+    public const string KnowledgeOffshelf = "KnowledgeOffshelf";
+
+	/// <summary>
+	/// 知识删除
+	/// </summary>
+	public const string KnowledgeDelete = "KnowledgeDelete";
 
     /// <summary>
     /// 分机小休申请
@@ -58,14 +63,15 @@ public class WorkflowModuleConsts
 	public static List<WorkflowModule> AllModules =>
         new()
         {
-            new(OrderHandle, "工单办理"),
-            new(KnowledgeAdd, "新增知识审批"),
-            new(KnowledgeUpdate, "知识更新"),
-            new(KnowledgeDelete, "知识删除"),
-            new(TelRestApply, "分机小休申请"),
-            new(OrderDelay,"工单延期"),
-            new(OrderPrevious,"工单退回"),
-            new(OrderScreen,"工单甄别"),
-            new(OrderTerminate,"工单终止"),
-        };
+			new(OrderHandle, "工单办理"),
+			new(KnowledgeAdd, "新增知识"),
+			new(KnowledgeUpdate, "知识更新"),
+			new(KnowledgeOffshelf,"知识下架"),
+			new(KnowledgeDelete, "知识删除"),
+			new(TelRestApply, "分机小休申请"),
+			new(OrderDelay,"工单延期"),
+			new(OrderPrevious,"工单退回"),
+			new(OrderScreen,"工单甄别"),
+			new(OrderTerminate,"工单终止"),
+		};
 }