Переглянути джерело

feat(types): 获取文件模板接口列表

lipk 3 роки тому
батько
коміт
61d3f80eb2
1 змінених файлів з 10 додано та 0 видалено
  1. 10 0
      types/src/interface/api/approvaApi.ts

+ 10 - 0
types/src/interface/api/approvaApi.ts

@@ -5,6 +5,7 @@ import {
   IAuditScoreLog,
   IAuditScoreRemark,
   IGatherYsProfileFile,
+  IGypFileTemplate,
   IMatterNode,
   UploadMsg,
 } from '..';
@@ -200,3 +201,12 @@ export namespace GetSettlementCostPermission {
 
   export type Response = Record<ESettlementCost, boolean>;
 }
+
+export namespace GetGatherYsProfileFileTemplate {
+  export type Params = {
+    gypID: string;
+    businessID: string;
+  };
+
+  export type Response = IGypFileTemplate[];
+}