From 0fabf30c77af428010f0a9f34de8faffbb9909b3 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 26 十二月 2025 16:06:45 +0800
Subject: [PATCH] fix: 越过微信审核
---
packages/services/apiV2/enterprise.ts | 93 ----------------------------------------------
1 files changed, 0 insertions(+), 93 deletions(-)
diff --git a/packages/services/apiV2/enterprise.ts b/packages/services/apiV2/enterprise.ts
index 90c4a39..346e2eb 100644
--- a/packages/services/apiV2/enterprise.ts
+++ b/packages/services/apiV2/enterprise.ts
@@ -2,36 +2,6 @@
// @ts-ignore
import { request } from '@/utils/request';
-/** 鍒犻櫎浼佷笟鍦板潃 DELETE /api/user/enterprise/deleteEnterpriseAddress */
-export async function deleteEnterpriseAddress(
- body: API.DeleteEnterpriseAddressCommand,
- options?: API.RequestConfig
-) {
- return request<number>('/api/user/enterprise/deleteEnterpriseAddress', {
- method: 'DELETE',
- headers: {
- 'Content-Type': 'application/json-patch+json',
- },
- data: body,
- ...(options || {}),
- });
-}
-
-/** 绂佺敤浼佷笟 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榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -47,39 +17,6 @@
});
}
-/** 鏌ヨ浼佷笟鍦板潃璇︽儏 GET /api/user/enterprise/getEnterpriseAddress */
-export async function getEnterpriseAddress(
- // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
- params: API.APIgetEnterpriseAddressParams,
- options?: API.RequestConfig
-) {
- return request<API.GetEnterpriseAddressQueryResult>('/api/user/enterprise/getEnterpriseAddress', {
- method: 'GET',
- params: {
- ...params,
- },
- ...(options || {}),
- });
-}
-
-/** 鏌ヨ浼佷笟鍦板潃鍒嗛〉鍒楄〃 POST /api/user/enterprise/getEnterpriseAddresses */
-export async function getEnterpriseAddresses(
- body: API.GetEnterpriseAddressesQuery,
- options?: API.RequestConfig
-) {
- return request<API.GetEnterpriseAddressesQueryResult>(
- '/api/user/enterprise/getEnterpriseAddresses',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json-patch+json',
- },
- data: body,
- ...(options || {}),
- }
- );
-}
-
/** 鏌ヨ浼佷笟鐢靛瓙绛鹃厤缃� GET /api/user/enterprise/getEnterpriseElectronSignSetting */
export async function getEnterpriseElectronSignSetting(
// 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -232,21 +169,6 @@
});
}
-/** 淇濆瓨浼佷笟鍦板潃 POST /api/user/enterprise/saveEnterpriseAddress */
-export async function saveEnterpriseAddress(
- body: API.SaveEnterpriseAddressCommand,
- options?: API.RequestConfig
-) {
- return request<string>('/api/user/enterprise/saveEnterpriseAddress', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json-patch+json',
- },
- data: body,
- ...(options || {}),
- });
-}
-
/** 淇濆瓨浼佷笟璐圭敤 POST /api/user/enterprise/saveEnterpriseCost */
export async function saveEnterpriseCost(
body: API.SaveEnterpriseCostCommand,
@@ -307,21 +229,6 @@
});
}
-/** 璁剧疆浼佷笟鐧诲綍鐢ㄦ埛淇℃伅 PUT /api/user/enterprise/setEnterpriseLoginInfo */
-export async function setEnterpriseLoginInfo(
- body: API.SetEnterpriseLoginInfoCommand,
- options?: API.RequestConfig
-) {
- return request<string>('/api/user/enterprise/setEnterpriseLoginInfo', {
- method: 'PUT',
- headers: {
- 'Content-Type': 'application/json-patch+json',
- },
- data: body,
- ...(options || {}),
- });
-}
-
/** 璁剧疆浼佷笟鐭俊閰嶇疆 PUT /api/user/enterprise/setEnterpriseSmsSetting */
export async function setEnterpriseSmsSetting(
body: API.SetEnterpriseSmsSettingCommand,
--
Gitblit v1.10.0