xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cn.iocoder.yudao.module.crm.service.refund;
 
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.crm.controller.admin.refund.vo.CrmRefundAuditReqVO;
import cn.iocoder.yudao.module.crm.controller.admin.refund.vo.CrmRefundPageReqVO;
import cn.iocoder.yudao.module.crm.controller.admin.refund.vo.CrmRefundRespVO;
import cn.iocoder.yudao.module.crm.controller.admin.refund.vo.CrmRefundSaveReqVO;
import jakarta.validation.Valid;
 
import java.util.List;
import java.util.Map;
 
public interface CrmRefundService {
 
    Long createRefund(@Valid CrmRefundSaveReqVO createReqVO);
 
    void updateRefund(@Valid CrmRefundSaveReqVO updateReqVO);
 
    void deleteRefund(Long id);
 
    CrmRefundRespVO getRefund(Long id);
 
    PageResult<CrmRefundRespVO> getRefundPage(CrmRefundPageReqVO pageReqVO);
 
    List<CrmRefundRespVO> getRefundList(CrmRefundPageReqVO reqVO);
 
    void auditRefund(@Valid CrmRefundAuditReqVO auditReqVO);
 
    void submitRefund(Long id, String processDefinitionKey, Long userId);
 
    void updateRefundAuditStatus(Long id, Integer bpmResult);
 
    List<Map<String, Object>> getRefundApproveProcessDefinitionList();
 
}