Преглед изворни кода

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