From b73f871d7f1571cd4e276ca51ca6d6d6f35e7147 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 30 十二月 2025 17:10:01 +0800
Subject: [PATCH] fix: bug

---
 packages/services/apiV2/enterprise.ts |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/packages/services/apiV2/enterprise.ts b/packages/services/apiV2/enterprise.ts
index 85c8dca..90c4a39 100644
--- a/packages/services/apiV2/enterprise.ts
+++ b/packages/services/apiV2/enterprise.ts
@@ -17,6 +17,21 @@
   });
 }
 
+/** 绂佺敤浼佷笟 POST /api/user/enterprise/disabledEnterprise */
+export async function disabledEnterprise(
+  body: API.DisabledEnterpriseCommand,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/user/enterprise/disabledEnterprise', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鏌ヨ浼佷笟璇︽儏 GET /api/user/enterprise/getEnterprise */
 export async function getEnterprise(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)

--
Gitblit v1.10.0