Procházet zdrojové kódy

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

lipk před 2 roky
rodič
revize
5d9199eaf9
1 změnil soubory, kde provedl 10 přidání a 0 odebrání
  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;
+  };
+}