From 91f00f1df35a964d69f48b9f71b484e2d4ef357e Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 11 六月 2025 16:52:57 +0800
Subject: [PATCH] fix: v1.4

---
 packages/services/api/LifePay.ts |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)

diff --git a/packages/services/api/LifePay.ts b/packages/services/api/LifePay.ts
index 9961f02..f134942 100644
--- a/packages/services/api/LifePay.ts
+++ b/packages/services/api/LifePay.ts
@@ -482,6 +482,21 @@
   });
 }
 
+/** 瀵煎嚭娓犻亾璁㈠崟Excel POST /api/LifePay/GetLifePayOrderPageExportForChannle */
+export async function getLifePayOrderPageExportForChannle(
+  body: API.QueryLifePayOrderListInput,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/LifePay/GetLifePayOrderPageExportForChannle', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鑾峰彇鍏呭�兼祦姘村垎椤垫暟鎹� POST /api/LifePay/GetLifePayRechargeReceiptsPage */
 export async function getLifePayRechargeReceiptsPage(
   body: API.LifePayRechargeReceiptsPageInput,
@@ -764,6 +779,21 @@
   });
 }
 
+/** 璇濊垂璁㈠崟鏌ヨ POST /api/LifePay/QueryPhoneOrder */
+export async function queryPhoneOrder(
+  body: API.QueryPhoneOrderRequestInput,
+  options?: API.RequestConfig
+) {
+  return request<API.QueryPhoneOrderResponse>('/api/LifePay/QueryPhoneOrder', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 閫�娆剧敓娲荤即璐硅鍗� POST /api/LifePay/RefundLifePayOrder */
 export async function refundLifePayOrder(
   body: API.RefundLifePayOrderInput,
@@ -839,6 +869,21 @@
   });
 }
 
+/** 鑾峰彇鎸囧畾澶╂暟鐨勭粺璁℃暟鎹� POST /api/LifePay/StatisticsByDate */
+export async function statisticsByDate(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIstatisticsByDateParams,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/LifePay/StatisticsByDate', {
+    method: 'POST',
+    params: {
+      ...params,
+    },
+    ...(options || {}),
+  });
+}
+
 /** 淇敼瀹為檯鍒拌处閲戦 POST /api/LifePay/UpdateLifePayOrderActualReceivedAmount */
 export async function updateLifePayOrderActualReceivedAmount(
   body: API.UpdateLifePayOrderInput,

--
Gitblit v1.9.1