فهرست منبع

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