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

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

diff --git a/packages/core/src/lifeRechargeServices.ts b/packages/core/src/lifeRechargeServices.ts
index b66a533..39398ad 100644
--- a/packages/core/src/lifeRechargeServices.ts
+++ b/packages/core/src/lifeRechargeServices.ts
@@ -395,6 +395,36 @@
       ...(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/CreateChannelConsultationFollowup */
+  async createChannelConsultationFollowup(
+    body: CreateChannelConsultationFollowupInput,
+    options?: RequestConfig
+  ) {
+    return this.request<string>('/api/Promoter/CreateChannelConsultationFollowup', {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    });
+  }
 }
 
 export interface PhoneMesssageCodeLoginInput {
@@ -896,3 +926,15 @@
 export interface QueryLifePayChannlesInput {
   status?: LifeRechargeConstants.LifePayChannelsStatsEnum;
 }
+
+export interface APIsetClickCountParams {
+  idnumber?: string;
+}
+
+export interface CreateChannelConsultationFollowupInput {
+  /** 娓犻亾鍜ㄨId */
+  channelConsultationId?: string;
+  followupStatus?: LifeRechargeConstants.LifePayChannelConsultationFollowupStatus;
+  /** 鍥炶璁板綍 */
+  followupRemark?: string;
+}

--
Gitblit v1.9.1