wupengfei
2025-09-24 ce190a7e169e6e632a89a952ec94f0a308ccf724
src/services/api/logRecords.ts
@@ -41,6 +41,24 @@
  });
}
/** 第三方资源日志分页列表查询 POST /api/common/logRecords/getThreeResourceLogs */
export async function getThreeResourceLogs(
  body: API.GetThreeResourceLogsQuery,
  options?: API.RequestConfig
) {
  return request<API.GetThreeResourceLogsQueryResult>(
    '/api/common/logRecords/getThreeResourceLogs',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json-patch+json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 跟踪Id日志查询 GET /api/common/logRecords/getTraceIdLog */
export async function getTraceIdLog(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)