Procházet zdrojové kódy

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

lipk před 3 roky
rodič
revize
61d3f80eb2
1 změnil soubory, kde provedl 10 přidání a 0 odebrání
  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[];
+}