1
zj
5 hours ago d615fc515fc52d6ed970c11d59a017e48de4be32
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 com.nq.service;
 
 
import com.nq.common.ServerResponse;
 
import javax.servlet.http.HttpServletRequest;
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(String paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest);
  
  ServerResponse flyNotify(HttpServletRequest paramHttpServletRequest);
 
  ServerResponse ococnPay(String payType, String payAmt, HttpServletRequest request);
 
  ServerResponse ococnNotify(HttpServletRequest request);
 
  String ococnReturn(HttpServletRequest request);
 
  ServerResponse alipayPagePay(String payAmt, HttpServletRequest request);
 
  ServerResponse alipayNotify(HttpServletRequest request);
 
  String alipayReturn(HttpServletRequest request);
}