Browse Source

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

lipk 3 năm trước cách đây
mục cha
commit
61d3f80eb2
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  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[];
+}