From 00b1a7434b5fd2d2f003340c0b66f5fc57716fea Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 19 八月 2025 16:01:47 +0800
Subject: [PATCH] fix: bug

---
 src/services/api/user.ts |   94 +++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 86 insertions(+), 8 deletions(-)

diff --git a/src/services/api/user.ts b/src/services/api/user.ts
index a398d43..98b559b 100644
--- a/src/services/api/user.ts
+++ b/src/services/api/user.ts
@@ -20,6 +20,39 @@
   );
 }
 
+/** 鏌ヨC绔汉鍛樺垎椤靛垪琛ㄦ暟鎹� POST /api/user/user/getPersonalUserInfos */
+export async function getPersonalUserInfos(
+  body: API.GetPersonalUserInfosQuery,
+  options?: API.RequestConfig
+) {
+  return request<API.GetPersonalUserInfosQueryResult>('/api/user/user/getPersonalUserInfos', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鏌ヨC绔汉鍛樼绾﹁鎯呭垎椤靛垪琛ㄦ暟鎹� POST /api/user/user/getPersonalUserInfoSignContracts */
+export async function getPersonalUserInfoSignContracts(
+  body: API.GetPersonalUserInfoSignContractsQuery,
+  options?: API.RequestConfig
+) {
+  return request<API.GetPersonalUserInfoSignContractsQueryResult>(
+    '/api/user/user/getPersonalUserInfoSignContracts',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json-patch+json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鏌ヨ鐢ㄦ埛瑙掕壊鍒楄〃 GET /api/user/user/getUserInfoRoles */
 export async function getUserInfoRoles(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -35,17 +68,32 @@
   });
 }
 
-/** 鏌ヨ鐢ㄦ埛绠�鍘� GET /api/user/user/getUserResume */
-export async function getUserResume(
-  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
-  params: API.APIgetUserResumeParams,
+/** 涓汉涓夎绱犲疄鍚嶈璇� POST /api/user/user/personalUserIdentity3Real */
+export async function personalUserIdentity3Real(
+  body: API.PersonalUserIdentity3RealCommand,
   options?: API.RequestConfig
 ) {
-  return request<API.GetUserResumeQueryResult>('/api/user/user/getUserResume', {
-    method: 'GET',
-    params: {
-      ...params,
+  return request<string>('/api/user/user/personalUserIdentity3Real', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
     },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鍙戦�佷釜浜轰笁瑕佺礌瀹炲悕鐭俊 POST /api/user/user/sendPersonalUserIdentity3RealSms */
+export async function sendPersonalUserIdentity3RealSms(
+  body: API.SendPersonalUserIdentity3RealSmsCommand,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/user/user/sendPersonalUserIdentity3RealSms', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
     ...(options || {}),
   });
 }
@@ -79,3 +127,33 @@
     ...(options || {}),
   });
 }
+
+/** 鍚屾浼佷笟鐢ㄦ埛 POST /api/user/user/syncEnterpriseUser */
+export async function syncEnterpriseUser(
+  body: API.SyncEnterpriseUserCommand,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/user/user/syncEnterpriseUser', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
+    ...(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