shiyunteng
2026-06-18 5badb0e02901c3ea5570fdb9cf497aec7e48fd65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.by4cloud.platformx.business.service;
 
import com.alibaba.fastjson.JSONObject;
import com.by4cloud.platformx.business.dto.PaymentConfirmAddDTO;
import com.by4cloud.platformx.business.entity.PaymentConfirm;
import com.by4cloud.platformx.common.core.util.R;
import com.by4cloud.platformx.common.data.mybatis.IIService;
 
public interface PaymentConfirmService extends IIService<PaymentConfirm> {
 
    R add(PaymentConfirmAddDTO addDTO);
 
    R syncPaymentRecepit();
 
    String getAccessToken(String accessToken);
 
    void saveBipRequestRecord(JSONObject params,String methodName, String result);
 
    R queryAllBusinessType();
 
    R queryAging();
}