From 18c11ea0ab8197fcdaec8d711ef447a255e8319a Mon Sep 17 00:00:00 2001
From: Administrator <zhubaomin>
Date: 星期五, 26 一月 2024 21:55:39 +0800
Subject: [PATCH] 2024-01-26 朱宝民 添加操作前水卡状态验证功能

---
 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