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/SeWalletRechargeMapper.java | 38 ++++++++++++++++++++++++++++++++++---- 1 files changed, 34 insertions(+), 4 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..a417b9e 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,14 +1,23 @@ package com.dy.pipIrrGlobal.daoSe; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeWalletRecharge; +import com.dy.pipIrrGlobal.voSe.VoWalletRecharge; +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/12 9:06 - * @LastEditTime 2023/12/12 9:06 - * @Description + * @date 2024-01-30 15:44 + * @LastEditTime 2024-01-30 15:44 + * @Description 鐢靛瓙閽卞寘鍏呭�糓apper鎺ュ彛 */ -public interface SeWalletRechargeMapper { + +@Mapper +public interface SeWalletRechargeMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(SeWalletRecharge record); @@ -20,4 +29,25 @@ int updateByPrimaryKeySelective(SeWalletRecharge record); int updateByPrimaryKey(SeWalletRecharge record); + + /** + * 鏍规嵁鎸囧畾鏉′欢鑾峰彇鐢靛瓙閽卞寘鍏呭�艰褰曟暟 + * @param params + * @return + */ + Long getRecordCount(Map<?, ?> params); + + /*** + * 鏍规嵁鎸囧畾鏉′欢鑾峰彇鐢靛瓙閽卞寘鍏呭�艰褰� + * @param params + * @return + */ + List<VoWalletRecharge> getWalletRecharges(Map<?, ?> params); + + /** + * 鑾峰彇鎸囧畾鏃ユ湡寰俊鏀舵鎬婚锛岃储鍔″璐﹀鏍搁〉浣跨敤 + * @param tradeDate + * @return + */ + Double getRechargeSum(@Param("tradeDate") String tradeDate); } \ No newline at end of file -- Gitblit v1.8.0