From d54c9c48c0b4f7c609e0aa65671a6c3fd26f94b4 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 04 七月 2025 13:19:29 +0800
Subject: [PATCH] fix: 江佑保系统健壮性修复

---
 src/services/api/typings.d.ts |   50 ++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 44 insertions(+), 6 deletions(-)

diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts
index c168d1b..ebb87b8 100644
--- a/src/services/api/typings.d.ts
+++ b/src/services/api/typings.d.ts
@@ -192,6 +192,10 @@
     id?: string;
   }
 
+  interface APIdownloadPolicyFileIdParams {
+    id: string;
+  }
+
   interface APIexportInsuranceBatchStaffParams {
     batchBillId?: string;
   }
@@ -282,10 +286,6 @@
     id?: string;
   }
 
-  interface APIgetInsuranceStaffListExportParams {
-    id?: string;
-  }
-
   interface APIgetInsureBatchDetailParams {
     batchBillId?: string;
   }
@@ -364,6 +364,10 @@
 
   interface APIimportInsDetailStaffToListParams {
     url?: string;
+    id?: string;
+  }
+
+  interface APIinsurancePolicyAuditAgainParams {
     id?: string;
   }
 
@@ -706,6 +710,11 @@
   interface EntityExtensionDto {
     properties?: Record<string, any>;
     configuration?: Record<string, any>;
+  }
+
+  interface ExportInsuranceStaffListInput {
+    status?: InsuranceDetailStatusEnum;
+    insurancePolicyId?: string;
   }
 
   interface ExtensionEnumDto {
@@ -1458,7 +1467,7 @@
     count?: number;
   }
 
-  type InsuranceDetailStatusEnum = 10 | 12 | 14 | 20 | 30;
+  type InsuranceDetailStatusEnum = 10 | 12 | 13 | 14 | 20 | 30;
 
   interface InsuranceOrderListOutput {
     id?: string;
@@ -1556,7 +1565,18 @@
     returnUrl?: string;
   }
 
-  type InsurancePolicyAuditStatusEnum = 10 | 20 | -10;
+  interface InsurancePolicyAuditOutput {
+    /** 娑堟伅 */
+    messages?: string[];
+    /** 鎬绘姇淇濅汉鏁� */
+    totalCount?: number;
+    /** 鎶曚繚鎴愬姛 */
+    successCount?: number;
+    /** 鎶曚繚澶辫触 */
+    failCount?: number;
+  }
+
+  type InsurancePolicyAuditStatusEnum = 10 | 15 | 20 | -10;
 
   type InsurancePolicyListPayStatusEnum = 1 | 2;
 
@@ -2062,6 +2082,24 @@
     password?: string;
   }
 
+  interface RestorePolicyDto {
+    /** Id */
+    id?: string;
+    /** 璁㈠崟鍙� */
+    channelOrderNo?: string;
+    /** 淇濆崟鍙� */
+    policyNo?: string;
+    /** 鐢靛瓙淇濆崟閾炬帴 */
+    policyOssUrl?: string;
+  }
+
+  interface RestorePolicyInput {
+    /** 淇濆崟Id */
+    insurancePolicyId?: string;
+    /** 鎶曚繚鎵规 */
+    items?: RestorePolicyDto[];
+  }
+
   interface ReturnValueApiDescriptionModel {
     type?: string;
     typeSimple?: string;

--
Gitblit v1.9.1