Selaa lähdekoodia

feat(types): 根据processID获取对应的动态金额接口定义

lipk 3 vuotta sitten
vanhempi
commit
67afc75596
1 muutettua tiedostoa jossa 16 lisäystä ja 1 poistoa
  1. 16 1
      types/src/interface/api/approvaApi.ts

+ 16 - 1
types/src/interface/api/approvaApi.ts

@@ -1,4 +1,10 @@
-import { IGatherYsProfileFile, IMatterNode, UploadMsg } from '..';
+import {
+  IBusinessProcessFee,
+  IBusinessProcessFeeParam,
+  IGatherYsProfileFile,
+  IMatterNode,
+  UploadMsg,
+} from '..';
 
 export namespace PostApprovalCopyGatherYsProfileFiles {
   export type Params = {
@@ -44,3 +50,12 @@ export namespace GetApprovalGetGatherYsProfileByBusinessID {
     copy: boolean;
   };
 }
+
+export namespace PostGetFeeByProcessId {
+  export type Params = {
+    businessID: string;
+    params: IBusinessProcessFeeParam[];
+  };
+
+  export type Response = Record<string, IBusinessProcessFee>;
+}