Selaa lähdekoodia

feat(types): 动态配置步骤

caipin 3 vuotta sitten
vanhempi
commit
6fafc473b9
1 muutettua tiedostoa jossa 13 lisäystä ja 0 poistoa
  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;
 }