Jelajahi Sumber

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

lipk 2 tahun lalu
induk
melakukan
5d9199eaf9
1 mengubah file dengan 10 tambahan dan 0 penghapusan
  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;
+  };
+}