huliguo
2025-06-05 0a492b64ca1a4e40cc9ea56eddd1afe2c09a12b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.*;
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);
}