瀏覽代碼

feat(types): 获取审核日志接口

lipk 3 年之前
父節點
當前提交
13c6e23aaa
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      types/src/interface/api/approvaApi.ts

+ 11 - 0
types/src/interface/api/approvaApi.ts

@@ -131,3 +131,14 @@ export namespace PostApprovalBatchAddAuditScoreLog {
     list: Omit<IAuditScoreLog, 'ID'>[];
     list: Omit<IAuditScoreLog, 'ID'>[];
   };
   };
 }
 }
+
+export namespace GetAuditScoreLogs {
+  export type Params = {
+    dataID: string;
+    businessID: string;
+  };
+
+  export type Response = {
+    list: IAuditScoreLog[];
+  };
+}