From fd7b8fb7c89832c28a838b0449bbb8a392433ee2 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期二, 22 四月 2025 14:33:02 +0800 Subject: [PATCH] 将华为云短信替换成阿里云短信 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopBalanceStatementMapper.java | 21 ++++++++++++++++++++- 1 files changed, 20 insertions(+), 1 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopBalanceStatementMapper.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopBalanceStatementMapper.java index 3363860..dfe6253 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopBalanceStatementMapper.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopBalanceStatementMapper.java @@ -1,11 +1,16 @@ package com.ruoyi.other.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.ruoyi.common.core.web.page.PageInfo; import com.ruoyi.other.api.domain.ShopBalanceStatement; +import org.apache.ibatis.annotations.Param; + +import java.util.List; /** * <p> - * Mapper 接口 + * Mapper 接口 * </p> * * @author luodangjia @@ -13,4 +18,18 @@ */ public interface ShopBalanceStatementMapper extends BaseMapper<ShopBalanceStatement> { + IPage<ShopBalanceStatement> queryShopBalanceStatementPage(@Param("page") IPage<ShopBalanceStatement> page, + @Param("bs") ShopBalanceStatement shopBalanceStatement); + + List<ShopBalanceStatement> selectShopBalanceStatementList(@Param("bs") ShopBalanceStatement shopBalanceStatement); + + + /** + * 获取余额明细列表 + * @param pageInfo + * @param type + * @return + */ + PageInfo<ShopBalanceStatement> shopCommissionStatisticslist(PageInfo<ShopBalanceStatement> pageInfo, @Param("shopId") Integer shopId, @Param("type") Integer type); + } -- Gitblit v1.7.1