From 1d830dc30c1d4b0071fc22c72a0cd3822c987991 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 09 六月 2025 10:31:16 +0800
Subject: [PATCH] fix: v1.4

---
 packages/core/src/lifeRechargeServices.ts |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/packages/core/src/lifeRechargeServices.ts b/packages/core/src/lifeRechargeServices.ts
index b66a533..e612ef8 100644
--- a/packages/core/src/lifeRechargeServices.ts
+++ b/packages/core/src/lifeRechargeServices.ts
@@ -395,6 +395,33 @@
       ...(options || {}),
     });
   }
+
+  /** 鐐瑰嚮鏁�+1 POST /api/Promoter/SetClickCount */
+  async setClickCount(
+    // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+    params: APIsetClickCountParams,
+    options?: RequestConfig
+  ) {
+    return this.request<any>('/api/Promoter/SetClickCount', {
+      method: 'POST',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    });
+  }
+
+  /** 鐢宠娓犻亾鍜ㄨ POST /api/Promoter/CreateChannelConsultation */
+  async createChannelConsultation(body: CreateChannelConsultationInput, options?: RequestConfig) {
+    return this.request<string>('/api/Promoter/CreateChannelConsultation', {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    });
+  }
 }
 
 export interface PhoneMesssageCodeLoginInput {
@@ -896,3 +923,23 @@
 export interface QueryLifePayChannlesInput {
   status?: LifeRechargeConstants.LifePayChannelsStatsEnum;
 }
+
+export interface APIsetClickCountParams {
+  idnumber?: string;
+}
+
+export interface CreateChannelConsultationInput {
+  /** 瀹㈡埛绔敤鎴稩d 濡傛湁 */
+  userId?: string;
+  /** 鎺ㄥ箍浜篒d */
+  idNumber?: string;
+  /** 鍜ㄨ浜� */
+  name?: string;
+  agentType?: LifeRechargeConstants.LifePayChannelAgentType;
+  /** 鑱旂郴鏂瑰紡 */
+  phoneNumber?: string;
+  /** 鍏徃鍚嶇О */
+  companyName?: string;
+  /** 瀹㈡埛璧勬簮 */
+  customerResources?: string;
+}

--
Gitblit v1.9.1