吴学文
2020-01-11 8c38c034ff9e608598309e1005abebcda882c613
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.app.smo.payment;
 
import com.java110.core.context.IPageData;
import org.springframework.http.ResponseEntity;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * 微信通知 支付完成
 */
public interface IToNotifySMO {
 
    /**
     * 支付完成
     * @param request
     * @return
     */
    public ResponseEntity<String> toNotify(String param,HttpServletRequest request);
}