1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.kidgrow.oprationcenter.service;
|
| import com.kidgrow.oprationcenter.model.SaasClientPay;
|
| import java.util.Map;
|
| public interface AlipayService {
| /**
| * 获取支付宝的 预支付 base64 二维码
| * @param saasClientPay
| * @return
| * @throws Exception
| */
| String getCode(SaasClientPay saasClientPay) throws Exception;
|
| String notify( Map<String, String> requestMap);
| }
|
|