From 24f53bb77f9ac80feb2e62e8ee670be4aa5f3c6e Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期四, 13 二月 2025 11:56:42 +0800
Subject: [PATCH] 1、远程模块remote模块实现: (1、系统启动时向通信中间件注册消息接收者; (2、消息接收者ctr实现(测试阶段); 2、在配置文件增加配置Springboot RestTemplate网络请求超时时长; 3、其他一些测试与优化。

---
 pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeRechargeMapper.java |   40 +++++++++++++++++++++++++++++++++++++---
 1 files changed, 37 insertions(+), 3 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeRechargeMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeRechargeMapper.java
index 44cd6dc..ccd3b59 100644
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeRechargeMapper.java
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeRechargeMapper.java
@@ -1,27 +1,61 @@
 package com.dy.pipIrrGlobal.daoSe;
 
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.dy.pipIrrGlobal.pojoSe.SeRecharge;
-import com.dy.pipIrrGlobal.pojoSe.VoRecharge;
+import com.dy.pipIrrGlobal.voSe.VoRecharge;
 import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 import java.util.Map;
 
+/**
+ * @author ZhuBaoMin
+ * @date 2023/12/23 8:47
+ * @LastEditTime 2023/12/23 8:47
+ * @Description
+ */
+
 @Mapper
-public interface SeRechargeMapper {
+public interface SeRechargeMapper extends BaseMapper<SeRecharge> {
     int deleteByPrimaryKey(Long id);
 
     int insert(SeRecharge record);
 
     int insertSelective(SeRecharge record);
 
-    //SeRecharge selectByPrimaryKey(Long id);
+    SeRecharge selectByPrimaryKey(Long id);
 
     int updateByPrimaryKeySelective(SeRecharge record);
 
     int updateByPrimaryKey(SeRecharge record);
 
+    /**
+     * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栧厖鍊艰褰�
+     * @param params
+     * @return
+     */
     Long getRecordCount(Map<?, ?> params);
 
+    /**
+     * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栧厖鍊艰褰�
+     * @param params
+     * @return
+     */
     List<VoRecharge> getRecharges(Map<?, ?> params);
+
+    /**
+     * 鏍规嵁姘村崱ID鍒犻櫎鍏呭�艰褰�
+     * @param cardId
+     * @return
+     */
+    //Integer deleteByCardNum(@Param("cardNum") String cardNum);
+    Integer deleteByCardId(@Param("cardId") Long cardId);
+
+    /**
+     *鏍规嵁姘村崱id鑾峰彇鏈�杩戜竴鏉″厖鍊艰褰�
+     * @param cardId
+     * @return
+     */
+    SeRecharge selectByCardId(@Param("cardId") Long cardId);
 }
\ No newline at end of file

--
Gitblit v1.8.0