Переглянути джерело

feat(types): 获取审批单位设置

lipk 2 роки тому
батько
коміт
5d9199eaf9
1 змінених файлів з 10 додано та 0 видалено
  1. 10 0
      types/src/interface/api/approvaApi.ts

+ 10 - 0
types/src/interface/api/approvaApi.ts

@@ -155,3 +155,13 @@ export namespace GetAuditScoreRemarkList {
 
 
   export type Resonse = IAuditScoreRemark[];
   export type Resonse = IAuditScoreRemark[];
 }
 }
+
+export namespace GetGcnameAndReviewer {
+  export type Params = { businessID: string };
+
+  export type Response = {
+    reviewerName: string;
+    reviewerID: string;
+    gcName: string;
+  };
+}