Parcourir la source

feat(types): 动态配置步骤

caipin il y a 3 ans
Parent
commit
6fafc473b9
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  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;
 }