Explorar o código

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

lipk %!s(int64=3) %!d(string=hai) anos
pai
achega
13c6e23aaa
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  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'>[];
   };
 }
+
+export namespace GetAuditScoreLogs {
+  export type Params = {
+    dataID: string;
+    businessID: string;
+  };
+
+  export type Response = {
+    list: IAuditScoreLog[];
+  };
+}