wuxw
2020-01-18 762a48523ed1b53036ae4ba1a4d7c2e9e044a51f
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);
}