From c9b9bb1a58e494c0790921ae838df06aca0d36fb Mon Sep 17 00:00:00 2001 From: GYJ <1157756119@qq.com> Date: Thu, 2 Jan 2025 21:52:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=20=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sqx/modules/pay/service/impl/CashOutServiceImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java b/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java index b38e1c52..110ddf96 100644 --- a/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java +++ b/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java @@ -42,6 +42,7 @@ import com.sqx.modules.utils.ParamPageUtils; import com.sqx.modules.utils.excel.ExcelData; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; +import org.apache.ibatis.annotations.Param; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -105,12 +106,11 @@ public class CashOutServiceImpl extends ServiceImpl impleme } @Override - public PageUtils selectCashOutList(Integer page, Integer limit, CashOut cashOut) { + public PageUtils selectCashOutList(Integer page, Integer limit, CashOut cashOut,@Param("isApp") boolean isApp) { PageHelper.startPage(page, limit); - return PageUtils.page(new PageInfo<>(baseMapper.selectCashOutPage(cashOut))); + return PageUtils.page(new PageInfo<>(baseMapper.selectCashOutPage(cashOut, isApp))); } - @Override public ExcelData excelPayDetails(CashOut cashOut1) { List cashOutList = baseMapper.selectCashOutList(cashOut1);