From 8b09fbc19a96b57bf1d0e4d7c79b51a76aeca554 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期五, 28 三月 2025 19:57:56 +0800 Subject: [PATCH] 修改bug --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IWithdrawalService.java | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IWithdrawalService.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IWithdrawalService.java index 9b2b453..94eec11 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IWithdrawalService.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IWithdrawalService.java @@ -13,12 +13,10 @@ /** * 提现操作 * @param money - * @param code - * @param name * @param uid * @throws Exception */ - ResultUtil withdrawal(Double money, String code, String name, Integer uid, Integer type,String bankName) throws Exception; + ResultUtil withdrawal(Double money, Integer uid, Integer type, String remark, Integer language) throws Exception; /** @@ -27,7 +25,7 @@ * @return * @throws Exception */ - List<Map<String, Object>> queryWithdrawal(Integer uid, Integer type, Integer pageNum, Integer size) throws Exception; + List<Map<String, Object>> queryWithdrawal(Integer language, Integer uid, Integer type, Integer state, Integer pageNum, Integer size) throws Exception; /** @@ -37,5 +35,14 @@ * @return * @throws Exception */ - ResultUtil withdrawalAudit(Integer id, Integer state) throws Exception; + ResultUtil withdrawalAudit(Integer id, Integer state, Integer language) throws Exception; + + + /** + * 获提现总额 + * @param uid + * @return + * @throws Exception + */ + Double queryWithdrawalSum(Integer uid, Integer type) throws Exception; } -- Gitblit v1.7.1