1
zj
2026-03-23 efb07bcec37c49228d9760794f215c8549243ad2
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.nq.service;
 
 
import com.nq.common.ServerResponse;
import com.nq.pojo.PaymentResponse;
import com.nq.pojo.PayV2NotifyRequest;
import com.nq.pojo.PayV2PayoutNotifyRequest;
import com.nq.pojo.PayoutCallbackVo;
import com.nq.pojo.RechargeCallbackVo;
import com.nq.pojo.TransactionStatusVo;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
 
public interface IPayService {
  ServerResponse juhe1(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest);
 
  ServerResponse juhenewpay(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest) throws Exception;
 
  ServerResponse juheh5pay(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest) throws Exception;
 
  ServerResponse juhe1Notify(HttpServletRequest paramHttpServletRequest);
 
  ServerResponse juhenewpayNotify(HttpServletRequest paramHttpServletRequest) throws UnsupportedEncodingException;
 
  ServerResponse flyPay(Integer paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest);
  
  ServerResponse flyNotify(HttpServletRequest paramHttpServletRequest) throws IOException;
 
  ServerResponse flyNotify(HttpServletRequest paramHttpServletRequest,String key) throws IOException;
 
  ServerResponse withdrawNotify(HttpServletRequest paramHttpServletRequest,String key) throws IOException;
 
    void rechargeCallback(PaymentResponse vo, HttpServletResponse response) throws IOException;
 
    void rechargeCallbackTwo(TransactionStatusVo vo, HttpServletResponse response) throws IOException;
 
    void rechargeCallbackZero(com.nq.pojo.PaymentNotifyResponse vo, HttpServletResponse response) throws IOException;
 
    void rechargeCallbackThree(TransactionStatusVo vo, HttpServletResponse response) throws IOException;
 
    void rechargeCallbackFour(PayV2NotifyRequest vo, HttpServletResponse response) throws IOException;
 
    void payoutCallback(PayoutCallbackVo vo, HttpServletResponse response) throws IOException;
 
    void payoutCallbackThree(PayV2PayoutNotifyRequest vo, HttpServletResponse response) throws IOException;
}