From 62287d09f9f5f1135163359fa18fd1fc4f8b2bc6 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 08 七月 2025 17:00:33 +0800
Subject: [PATCH] fix: 江佑保系统健壮性修复

---
 src/services/api/InsuranceOrder.ts |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/src/services/api/InsuranceOrder.ts b/src/services/api/InsuranceOrder.ts
index 54e53d5..ad9fcb9 100644
--- a/src/services/api/InsuranceOrder.ts
+++ b/src/services/api/InsuranceOrder.ts
@@ -136,6 +136,21 @@
   });
 }
 
+/** 琛ユ彁 POST /api/InsuranceOrder/FillInsStaffToList */
+export async function fillInsStaffToList(
+  body: API.FillInsStaffToListFrontInput,
+  options?: API.RequestConfig
+) {
+  return request<API.ImportInsStaffToListOutput>('/api/InsuranceOrder/FillInsStaffToList', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鏍规嵁韬唤璇佸彿鍜屾姤妗堟棩鏈熸煡璇㈠湪淇濅俊鎭� POST /api/InsuranceOrder/GetEffectingStaffList */
 export async function getEffectingStaffList(
   body: API.GetEffectingStaffListInput,
@@ -460,7 +475,7 @@
   body: API.RestorePolicyInput,
   options?: API.RequestConfig
 ) {
-  return request<any>('/api/InsuranceOrder/RestorePolicyStatus', {
+  return request<boolean>('/api/InsuranceOrder/RestorePolicyStatus', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',

--
Gitblit v1.9.1