浏览代码

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

lipk 2 年之前
父节点
当前提交
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,
   IAuditScoreLog,
   IAuditScoreRemark,
   IAuditScoreRemark,
   IGatherYsProfileFile,
   IGatherYsProfileFile,
+  IGypFileTemplate,
   IMatterNode,
   IMatterNode,
   UploadMsg,
   UploadMsg,
 } from '..';
 } from '..';
@@ -200,3 +201,12 @@ export namespace GetSettlementCostPermission {
 
 
   export type Response = Record<ESettlementCost, boolean>;
   export type Response = Record<ESettlementCost, boolean>;
 }
 }
+
+export namespace GetGatherYsProfileFileTemplate {
+  export type Params = {
+    gypID: string;
+    businessID: string;
+  };
+
+  export type Response = IGypFileTemplate[];
+}