From b823ca3d9f2e6dd6cdc2d388576d02c73d5f9896 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 01 十二月 2025 13:20:45 +0800
Subject: [PATCH] release: @life-payment/core v0.0.4
---
packages/services/api/LifePayAnnouncement.ts | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/packages/services/api/LifePayAnnouncement.ts b/packages/services/api/LifePayAnnouncement.ts
index d22e488..4714e3e 100644
--- a/packages/services/api/LifePayAnnouncement.ts
+++ b/packages/services/api/LifePayAnnouncement.ts
@@ -50,12 +50,19 @@
);
}
-/** 鑾峰彇褰撳墠灞曠ず涓殑鍏憡 GET /api/LifePayAnnouncement/GetShowingLifePayAnnouncement */
-export async function getShowingLifePayAnnouncement(options?: API.RequestConfig) {
+/** 鑾峰彇褰撳墠灞曠ず涓殑鍏憡 POST /api/LifePayAnnouncement/GetShowingLifePayAnnouncement */
+export async function getShowingLifePayAnnouncement(
+ body: API.GetShowingLifePayAnnouncementInput,
+ options?: API.RequestConfig
+) {
return request<API.CreateEditLifePayAnnouncementOutput>(
'/api/LifePayAnnouncement/GetShowingLifePayAnnouncement',
{
- method: 'GET',
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
...(options || {}),
}
);
--
Gitblit v1.9.1