소스 검색

feat(types): 获取执行成员

lipk 3 년 전
부모
커밋
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[];
     dataIdList: string[];
   };
   };
 }
 }
+
+export namespace GetApprovalExecutorMembers {
+  export type Params = {
+    businessID: string;
+    executorID: string[];
+  };
+
+  export type Response = {
+    executorID: string;
+    members: string[];
+  }[];
+}