瀏覽代碼

feat(types): 获取金额接口

lipk 2 年之前
父節點
當前提交
7cfb5e3081
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      types/src/interface/api/businessApi.ts

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

@@ -50,3 +50,17 @@ export namespace GetALList {
     total: number;
   };
 }
+
+export namespace GetApprovalFee {
+  export type Query = {
+    businessIDList: string[];
+  };
+
+  export type Response = {
+    Id: string;
+    reportMoney: string;
+    conclusion: string;
+    addition: string;
+    reduction: string;
+  }[];
+}