Преглед на файлове

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;
+  }[];
+}