From 40d3bb9fe638a0bd79e829e7fd5114871101390b Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期四, 20 十一月 2025 10:52:38 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/user_action' into user_action
---
framework/src/main/java/cn/lili/modules/lmk/service/impl/ActionRecordServiceImpl.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/impl/ActionRecordServiceImpl.java b/framework/src/main/java/cn/lili/modules/lmk/service/impl/ActionRecordServiceImpl.java
index c754f0f..2be2bec 100644
--- a/framework/src/main/java/cn/lili/modules/lmk/service/impl/ActionRecordServiceImpl.java
+++ b/framework/src/main/java/cn/lili/modules/lmk/service/impl/ActionRecordServiceImpl.java
@@ -160,6 +160,14 @@
}
@Override
+ public Result userStayListRecord(StayActionRecordQuery param) {
+ IPage<ActionRecord> page = PageUtil.getPage(param, ActionRecord.class);
+ Page<ActionRecord> stayActionRecordVOPage = baseMapper.userStayListRecord(page, param);
+ return Result.ok().data(stayActionRecordVOPage);
+
+ }
+
+ @Override
public Result userShare(StayActionRecordQuery param) {
IPage<ShareActionRecordVO> page = PageUtil.getPage(param, ShareActionRecordVO.class);
Page<ShareActionRecordVO> shareActionRecordVOPage = baseMapper.userShare(page, param);
--
Gitblit v1.8.0