huliguo
8 天以前 f0e40a7b64d1285cc9c1f2dff532a22964664de1
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);
}