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
| package com.kidgrow.oprationcenter.service;
|
|
| import com.kidgrow.oprationcenter.model.SaasClientPay;
|
| import javax.servlet.http.HttpServletRequest;
| import java.util.Map;
|
| public interface WxService {
| /**
| * 获取支付宝的 微信 base64 二维码
| * @param saasClientPay
| * @param request
| * @return
| * @throws Exception
| */
| Map<String,String> getCode(SaasClientPay saasClientPay, HttpServletRequest request) throws Exception;
|
| /**
| * 微信的回调接口
| * @param requestMap
| * @return
| * @throws Exception
| */
| String callback(Map<String, String> requestMap) throws Exception;
| }
|
|