From 48d64c07ea643e1b1199828f6ac36c12c05cd535 Mon Sep 17 00:00:00 2001
From: Administrator <zhubaomin>
Date: 星期一, 15 一月 2024 22:03:46 +0800
Subject: [PATCH] 2024-01-15 朱宝民 优化获取用户信息接口

---
 pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeMapper.java |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeMapper.java
index 84b5e3b..77ab6cb 100644
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeMapper.java
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeMapper.java
@@ -1,6 +1,8 @@
 package com.dy.pipIrrGlobal.daoSe;
 
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.dy.pipIrrGlobal.pojoSe.SeWalletRecharge;
+import org.apache.ibatis.annotations.Mapper;
 
 /**
  * @author ZhuBaoMin
@@ -8,7 +10,9 @@
  * @LastEditTime 2023/12/12 9:06
  * @Description
  */
-public interface SeWalletRechargeMapper {
+
+@Mapper
+public interface SeWalletRechargeMapper extends BaseMapper<SeWalletRecharge> {
     int deleteByPrimaryKey(Long id);
 
     int insert(SeWalletRecharge record);

--
Gitblit v1.8.0