From 9d42afc9c2fd5ef2ba09b56ba3a5475801b9e4d5 Mon Sep 17 00:00:00 2001 From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com> Date: 星期二, 29 十月 2024 11:34:34 +0800 Subject: [PATCH] 统计 商品管理 用户管理 订单管理 --- src/main/java/com/mzl/flower/mapper/wallet/WalletBillRecordMapper.java | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/mzl/flower/mapper/wallet/WalletBillRecordMapper.java b/src/main/java/com/mzl/flower/mapper/wallet/WalletBillRecordMapper.java index 242d2d1..b8fcff6 100644 --- a/src/main/java/com/mzl/flower/mapper/wallet/WalletBillRecordMapper.java +++ b/src/main/java/com/mzl/flower/mapper/wallet/WalletBillRecordMapper.java @@ -1,7 +1,15 @@ package com.mzl.flower.mapper.wallet; -import com.mzl.flower.entity.wallet.WalletBillRecordDO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.mzl.flower.dto.request.wallet.QueryWalletBillDTO; +import com.mzl.flower.dto.request.wallet.QueryWalletBillRecordDTO; +import com.mzl.flower.dto.response.wallet.WalletBillRecordVO; +import com.mzl.flower.entity.wallet.WalletBillRecordDO; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; /** * <p> @@ -11,6 +19,12 @@ * @author @TaoJie * @since 2024-10-22 */ +@Repository public interface WalletBillRecordMapper extends BaseMapper<WalletBillRecordDO> { + List<WalletBillRecordVO> queryPage(@Param("dto") QueryWalletBillRecordDTO queryWalletBillRecordDTO, Page page); + + List<WalletBillRecordVO> queryWalletBillRecordList(@Param("dto") QueryWalletBillRecordDTO queryWalletBillRecordDTO); + List<WalletBillRecordVO> getPage(Page page, @Param("dto") QueryWalletBillDTO dto); } + -- Gitblit v1.9.3