Prechádzať zdrojové kódy

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

lipk 2 rokov pred
rodič
commit
61d3f80eb2
1 zmenil súbory, kde vykonal 10 pridanie a 0 odobranie
  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[];
+}