From 15bf8d8550804f1e853d52a898ebcca7674a5e39 Mon Sep 17 00:00:00 2001 From: wuzeyu <1223318623@qq.com> Date: 星期一, 15 一月 2024 17:01:34 +0800 Subject: [PATCH] 流量监测站查询、修改 根据流量监测站编号获取绑定记录 --- 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