Explorar el Código

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

lipk hace 2 años
padre
commit
5d9199eaf9
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  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;
+  };
+}