From e372854c71bc97d162452cc4b3f5cfa586da50a8 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 22 五月 2025 17:06:31 +0800
Subject: [PATCH] feat: UI

---
 packages/services/api/UserRole.ts |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/packages/services/api/UserRole.ts b/packages/services/api/UserRole.ts
index 37b6b26..f23690d 100644
--- a/packages/services/api/UserRole.ts
+++ b/packages/services/api/UserRole.ts
@@ -59,6 +59,14 @@
   });
 }
 
+/** 鑾峰彇鐢ㄦ埛璐﹀彿璇︽儏 GET /api/UserRole/GetBackClientUserInfo */
+export async function getBackClientUserInfo(options?: API.RequestConfig) {
+  return request<API.BackClientUserInfoOutput>('/api/UserRole/GetBackClientUserInfo', {
+    method: 'GET',
+    ...(options || {}),
+  });
+}
+
 /** 鍚庡彴绠$悊璐︽埛鍒楄〃 POST /api/UserRole/GetBackClientUsers */
 export async function getBackClientUsers(
   body: API.GetBackClientUsersInput,
@@ -86,6 +94,21 @@
   });
 }
 
+/** 閲嶇疆瀵嗙爜 POST /api/UserRole/ResetUserPassword */
+export async function resetUserPassword(
+  body: API.ResetPasswordBaseInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/UserRole/ResetUserPassword', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 瑙掕壊鍚敤/绂佺敤 POST /api/UserRole/RoleEnableOrForbid */
 export async function roleEnableOrForbid(
   body: API.RoleEnableOrForbidInput,

--
Gitblit v1.9.1