From 245791c6de54b269dc22f38b0f6c5d160bf9c641 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 20 十一月 2025 13:13:30 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/ElectronSign.ts b/src/services/api/ElectronSign.ts
index db7da6f..9b1d048 100644
--- a/src/services/api/ElectronSign.ts
+++ b/src/services/api/ElectronSign.ts
@@ -14,6 +14,51 @@
   });
 }
 
+/** 鎵归噺绛剧害 POST /api/ElectronSign/BatchSignContract */
+export async function batchSignContract(
+  body: API.BatchSignContractInput,
+  options?: API.RequestConfig
+) {
+  return request<API.BatchSignContractOutput>('/api/ElectronSign/BatchSignContract', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鎵归噺鏇存柊鍚堝悓鍙傛暟鐘舵�� POST /api/ElectronSign/BatchUpdateContractParamterStatus */
+export async function batchUpdateContractParamterStatus(
+  body: API.BatchUpdateContractParamterStatusInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ElectronSign/BatchUpdateContractParamterStatus', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鎵归噺鏇存柊瀹㈡埛鍚堝悓鍙傛暟鐘舵�� POST /api/ElectronSign/BatchUpdateCustomContractParamterStatus */
+export async function batchUpdateCustomContractParamterStatus(
+  body: API.BatchUpdateCustomContractParamterStatusInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ElectronSign/BatchUpdateCustomContractParamterStatus', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鍒涘缓鎴栨洿鏂版ā鏉� POST /api/ElectronSign/CreateOrUpdateContractTemplate */
 export async function createOrUpdateContractTemplate(
   body: API.CreateOrUpdateContractTemplateInput,
@@ -97,6 +142,24 @@
   });
 }
 
+/** 鑾峰彇鍚堝悓鍙傛暟鍒楄〃 POST /api/ElectronSign/GetContractParamterList */
+export async function getContractParamterList(
+  body: API.GetContractParamterListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetContractParamterListItemPageOutput>(
+    '/api/ElectronSign/GetContractParamterList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇鍚堝悓妯℃澘鍒楄〃 POST /api/ElectronSign/GetContractTemplateList */
 export async function getContractTemplateList(
   body: API.GetContractTemplateInput,
@@ -125,6 +188,42 @@
     data: body,
     ...(options || {}),
   });
+}
+
+/** 鑾峰彇瀹㈡埛鍚堝悓鍙傛暟鍒楄〃 POST /api/ElectronSign/GetCustomContractParamterList */
+export async function getCustomContractParamterList(
+  body: API.GetCustomContractParamterListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetCustomContractParamterListItemPageOutput>(
+    '/api/ElectronSign/GetCustomContractParamterList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇瀹㈡埛鍚堝悓鍙傛暟閫夋嫨鍣� GET /api/ElectronSign/GetCustomContractParamterSelect */
+export async function getCustomContractParamterSelect(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetCustomContractParamterSelectParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetCustomContractParamterListItem[]>(
+    '/api/ElectronSign/GetCustomContractParamterSelect',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
 }
 
 /** 鑾峰彇瀹㈡埛鍒楄〃 POST /api/ElectronSign/GetCustomerList */
@@ -217,6 +316,36 @@
   });
 }
 
+/** 淇濆瓨鍚堝悓鍙傛暟 POST /api/ElectronSign/SaveContractParamter */
+export async function saveContractParamter(
+  body: API.SaveContractTemplateParamterInput,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/ElectronSign/SaveContractParamter', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 淇濆瓨瀹㈡埛鍚堝悓鍙傛暟 POST /api/ElectronSign/SaveCustomContractParamter */
+export async function saveCustomContractParamter(
+  body: API.SaveCustomContractTemplateParamterInput,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/ElectronSign/SaveCustomContractParamter', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鍙戣捣绛剧害 POST /api/ElectronSign/SendContract */
 export async function sendContract(body: API.SendContractInput, options?: API.RequestConfig) {
   return request<API.SendContractOutput>('/api/ElectronSign/SendContract', {

--
Gitblit v1.9.1