From 371591d64d37a57e2866e6f0729cf7054b8744ba Mon Sep 17 00:00:00 2001 From: Administrator <zhubaomin> Date: 星期四, 25 一月 2024 14:29:58 +0800 Subject: [PATCH] 2024-01-25 朱宝民 总账生成功能、总账审核功能 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeHistoryMapper.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeHistoryMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeHistoryMapper.java index abeaa27..14eb8d2 100644 --- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeHistoryMapper.java +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeWalletRechargeHistoryMapper.java @@ -1,6 +1,8 @@ package com.dy.pipIrrGlobal.daoSe; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeWalletRechargeHistory; +import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin @@ -8,7 +10,9 @@ * @LastEditTime 2023/12/12 9:06 * @Description */ -public interface SeWalletRechargeHistoryMapper { + +@Mapper +public interface SeWalletRechargeHistoryMapper extends BaseMapper<SeWalletRechargeHistory> { int deleteByPrimaryKey(Long id); int insert(SeWalletRechargeHistory record); -- Gitblit v1.8.0