From 967898b07990a5aa0ca50a0d251a0f3f06fc62bd Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期五, 18 七月 2025 20:48:52 +0800 Subject: [PATCH] 修改订单controller中bug,读取工商信息,动态获取水母信息 --- ruoyi-system/src/main/java/com/ruoyi/system/service/WithdrawService.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/WithdrawService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/WithdrawService.java index e3750e6..e793c09 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/WithdrawService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/WithdrawService.java @@ -1,11 +1,18 @@ package com.ruoyi.system.service; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import com.ruoyi.system.domain.Agreement; import com.ruoyi.system.domain.Withdrawal; -import com.ruoyi.system.pojo.dto.AddAgreementDTO; +import com.ruoyi.system.pojo.dto.*; +import com.ruoyi.system.pojo.vo.WithdrawPageVO; public interface WithdrawService extends IService<Withdrawal> { + IPage<WithdrawPageVO> withdrawPage(WithdrawPageDTO dto); + + void agree(WithDrawAgreeDTO dto); + + void refuse(WithDrawRefuseDTO dto); } -- Gitblit v1.7.1