瀏覽代碼

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

lipk 3 年之前
父節點
當前提交
67afc75596
共有 1 個文件被更改,包括 16 次插入1 次删除
  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 namespace PostApprovalCopyGatherYsProfileFiles {
   export type Params = {
   export type Params = {
@@ -44,3 +50,12 @@ export namespace GetApprovalGetGatherYsProfileByBusinessID {
     copy: boolean;
     copy: boolean;
   };
   };
 }
 }
+
+export namespace PostGetFeeByProcessId {
+  export type Params = {
+    businessID: string;
+    params: IBusinessProcessFeeParam[];
+  };
+
+  export type Response = Record<string, IBusinessProcessFee>;
+}