From 174f774704bbab83061288522ec4fbdfba1f6716 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 25 三月 2025 13:17:10 +0800
Subject: [PATCH] fix: 三期bug

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

diff --git a/packages/core/src/lifeRechargeServices.ts b/packages/core/src/lifeRechargeServices.ts
index 90b6604..279dce2 100644
--- a/packages/core/src/lifeRechargeServices.ts
+++ b/packages/core/src/lifeRechargeServices.ts
@@ -326,6 +326,18 @@
       ...(options || {}),
     });
   }
+
+  /** 鑾峰彇娓犻亾鎶樻墸 GET /api/LifePay/GetChannelRate */
+  async getChannelRate(body: ChannelsBaseInput, options?: RequestConfig) {
+    return this.request<ChannelRateOutput>('/api/LifePay/GetChannelRate', {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    });
+  }
 }
 
 export interface PhoneMesssageCodeLoginInput {
@@ -502,6 +514,8 @@
   creationTime?: string;
   /** 閫�娆炬椂闂� */
   refundTime?: string;
+  /** 閫�娆剧敵璇锋椂闂� */
+  refundApplyTime?: string;
   /** 閫�娆惧嚟璇� */
   refundCredentialsImgUrl?: string;
   refundApplyRemark?: string;
@@ -509,6 +523,8 @@
   /** 娓犻亾娴佹按鍙� */
   acoolyOrderNo?: string;
   frontStatus?: LifeRechargeConstants.LifePayOrderFrontStatusEnum;
+  lifePayRefundStatus?: LifeRechargeConstants.LifePayRefundStatusEnum;
+  acoolyStatus?: LifeRechargeConstants.ACOOLYStatusEnum;
 }
 
 export interface ElectricSupportAreaResponse {
@@ -755,3 +771,7 @@
 }
 
 export type IntroInfoTypeEnum = 0 | 1 | 2 | 3 | 4;
+
+export interface ChannelRateOutput {
+  channlesRate?: number;
+}

--
Gitblit v1.9.1