wupengfei
4 天以前 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf
src/services/api/ExternalSystem.ts
@@ -17,6 +17,17 @@
  });
}
/** 查看当前外部系统信息 GET /api/ExternalSystem/GetCurrentExternalSystem */
export async function getCurrentExternalSystem(options?: API.RequestConfig) {
  return request<API.GetCurrentExternalSystemOutput>(
    '/api/ExternalSystem/GetCurrentExternalSystem',
    {
      method: 'GET',
      ...(options || {}),
    }
  );
}
/** 获取外部系统列表 POST /api/ExternalSystem/GetExternalSystemList */
export async function getExternalSystemList(
  body: API.GetExternalSystemInput,