Просмотр исходного кода

feat(types): 获取执行成员

lipk 3 лет назад
Родитель
Сommit
4bcf51af01
1 измененных файлов с 12 добавлено и 0 удалено
  1. 12 0
      types/src/interface/api/approvaApi.ts

+ 12 - 0
types/src/interface/api/approvaApi.ts

@@ -107,3 +107,15 @@ export namespace PostApprovalDeleteFiles {
     dataIdList: string[];
   };
 }
+
+export namespace GetApprovalExecutorMembers {
+  export type Params = {
+    businessID: string;
+    executorID: string[];
+  };
+
+  export type Response = {
+    executorID: string;
+    members: string[];
+  }[];
+}