From 8fa20fed4bf1a8146ceb1646157b8802b553e570 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 22 八月 2025 15:36:54 +0800 Subject: [PATCH] fix: bug --- src/services/api/user.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/services/api/user.ts b/src/services/api/user.ts index 44bca4f..43f20b8 100644 --- a/src/services/api/user.ts +++ b/src/services/api/user.ts @@ -112,3 +112,18 @@ ...(options || {}), }); } + +/** 鍚屾杩愯惀鐢ㄦ埛 POST /api/user/user/syncOperationUser */ +export async function syncOperationUser( + body: API.SyncOperationUserCommand, + options?: API.RequestConfig +) { + return request<string>('/api/user/user/syncOperationUser', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} -- Gitblit v1.9.1