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

---
 packages/core/src/lifeRechargeServices.ts |   31 +++++++++++++++++++------------
 1 files changed, 19 insertions(+), 12 deletions(-)

diff --git a/packages/core/src/lifeRechargeServices.ts b/packages/core/src/lifeRechargeServices.ts
index 39398ad..6762eea 100644
--- a/packages/core/src/lifeRechargeServices.ts
+++ b/packages/core/src/lifeRechargeServices.ts
@@ -411,12 +411,9 @@
     });
   }
 
-  /** 鏂板鍥炶 POST /api/Promoter/CreateChannelConsultationFollowup */
-  async createChannelConsultationFollowup(
-    body: CreateChannelConsultationFollowupInput,
-    options?: RequestConfig
-  ) {
-    return this.request<string>('/api/Promoter/CreateChannelConsultationFollowup', {
+  /** 鐢宠娓犻亾鍜ㄨ POST /api/Promoter/CreateChannelConsultation */
+  async createChannelConsultation(body: CreateChannelConsultationInput, options?: RequestConfig) {
+    return this.request<string>('/api/Promoter/CreateChannelConsultation', {
       method: 'POST',
       headers: {
         'Content-Type': 'application/json',
@@ -874,6 +871,8 @@
 export interface LifePayPhoneMesssageCodeLoginOutput {
   /** 鐢ㄦ埛Id */
   userId?: string;
+  /** 鎺ㄥ箍鍛業D */
+  promoterIdNumber?: string;
   /** 鏄惁鏄悗鍙扮敤鎴� */
   isBackClientUser?: boolean;
   /** 娓犻亾鍙� */
@@ -931,10 +930,18 @@
   idnumber?: string;
 }
 
-export interface CreateChannelConsultationFollowupInput {
-  /** 娓犻亾鍜ㄨId */
-  channelConsultationId?: string;
-  followupStatus?: LifeRechargeConstants.LifePayChannelConsultationFollowupStatus;
-  /** 鍥炶璁板綍 */
-  followupRemark?: 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