Przeglądaj źródła

feat(types): 添加接口,获取单位列表和流程列表

lipk 2 lat temu
rodzic
commit
39a72b1af4
1 zmienionych plików z 7 dodań i 0 usunięć
  1. 7 0
      types/src/interface/api/businessApi.ts

+ 7 - 0
types/src/interface/api/businessApi.ts

@@ -8,3 +8,10 @@ export namespace PostGetFeeByProcessId {
 
   export type Response = Record<string, IBusinessProcessFee>;
 }
+
+export namespace PostPrepareOption {
+  export type Response = {
+    institutionList: { ID: string; name: string }[];
+    approvalList: { name: string; ID: string }[];
+  };
+}