Преглед на файлове

feat(types): 动态配置步骤

caipin преди 3 години
родител
ревизия
6fafc473b9
променени са 1 файла, в които са добавени 13 реда и са изтрити 0 реда
  1. 13 0
      types/src/interface/matter.ts

+ 13 - 0
types/src/interface/matter.ts

@@ -46,4 +46,17 @@ export interface IYsProfileTemplate {
 
 export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
     businessID: string;
+}
+
+export interface IDynamicStep {
+    ID: string;
+    gatherID: string;
+    businessType: BusinessTypeKey;
+    stepID: string;
+    nextStepID: string;
+    executorID: boolean;
+}
+
+export interface IGatherDynamicStep extends IDynamicStep {
+    businessID: string;
 }