From 0a492b64ca1a4e40cc9ea56eddd1afe2c09a12b3 Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期四, 05 六月 2025 16:27:11 +0800 Subject: [PATCH] 财务管理 --- 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