From b722537de03af08b60ad269d67bd57ccb5e4d22c Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 10 Feb 2025 11:41:50 +0800 Subject: [PATCH] feat(pay): 添加 FIUU充值功能并优化支付流程 - 新增 FIUU 充值接口和相关请求模型 - 更新 FIUU 支付流程,支持订单和充值操作 - 优化 FIUU 回调处理,增加对充值订单的支持 - 调整订单状态更新逻辑,确保支付成功后正确更新 --- src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java b/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java index c70ceb9..e953e09 100644 --- a/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java +++ b/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java @@ -1,2 +1,12 @@ -package cc.mrbird.febs.mall.mapper;public interface MallNewsCategoryMapper { +package cc.mrbird.febs.mall.mapper; + +import cc.mrbird.febs.mall.entity.MallNewsCategory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import org.apache.ibatis.annotations.Param; + +public interface MallNewsCategoryMapper extends BaseMapper<MallNewsCategory> { + + IPage<MallNewsCategory> selectInPage(@Param("record") MallNewsCategory mallNewsCategory, Page<MallNewsCategory> page); } -- Gitblit v1.9.1