From 9e63ed4533fe6fbb5e81a096c9f5949c7ccf58f2 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 08 四月 2025 17:34:15 +0800
Subject: [PATCH] feat: 接口

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

diff --git a/src/services/api/UserRole.ts b/src/services/api/UserRole.ts
index 37b6b26..309f2fa 100644
--- a/src/services/api/UserRole.ts
+++ b/src/services/api/UserRole.ts
@@ -74,6 +74,21 @@
   });
 }
 
+/** 鏀垮姟绔处鍙峰垪琛� POST /api/UserRole/GetGovermentClientUsers */
+export async function getGovermentClientUsers(
+  body: API.GetBackClientUsersInput,
+  options?: API.RequestConfig
+) {
+  return request<API.UserDtoPageOutput>('/api/UserRole/GetGovermentClientUsers', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 瑙掕壊鍒楄〃 POST /api/UserRole/GetRoles */
 export async function getRoles(body: API.GetRolesInput, options?: API.RequestConfig) {
   return request<API.RoleInfoPageOutput>('/api/UserRole/GetRoles', {

--
Gitblit v1.9.1