From 1d839bd0fca331b565deb640bbec0c85e3711791 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 05 九月 2025 16:03:01 +0800
Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobAdminBClient

---
 src/services/api/enterpriseEmployee.ts |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/services/api/enterpriseEmployee.ts b/src/services/api/enterpriseEmployee.ts
index dbf7f68..286ed8a 100644
--- a/src/services/api/enterpriseEmployee.ts
+++ b/src/services/api/enterpriseEmployee.ts
@@ -130,7 +130,7 @@
   body: API.InviteElectronSignCommand,
   options?: API.RequestConfig
 ) {
-  return request<string>('/api/user/enterpriseEmployee/inviteElectronSign', {
+  return request<number>('/api/user/enterpriseEmployee/inviteElectronSign', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json-patch+json',
@@ -158,12 +158,27 @@
   );
 }
 
+/** 鍙戦�侀個璇风绾︾煭淇� POST /api/user/enterpriseEmployee/sendInviteElectronSignSms */
+export async function sendInviteElectronSignSms(
+  body: API.SendInviteElectronSignSmsCommand,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/user/enterpriseEmployee/sendInviteElectronSignSms', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鐏靛伐瑙g害 POST /api/user/enterpriseEmployee/stopElectronSign */
 export async function stopElectronSign(
   body: API.StopElectronSignCommand,
   options?: API.RequestConfig
 ) {
-  return request<string>('/api/user/enterpriseEmployee/stopElectronSign', {
+  return request<number>('/api/user/enterpriseEmployee/stopElectronSign', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json-patch+json',

--
Gitblit v1.9.1