@@ -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[];
+}