Browse Source

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

lipk 2 năm trước cách đây
mục cha
commit
5d9199eaf9
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

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