浏览代码

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 namespace GetGcnameAndReviewer {
+  export type Params = { businessID: string };
+
+  export type Response = {
+    reviewerName: string;
+    reviewerID: string;
+    gcName: string;
+  };
+}