wuxw
2020-01-11 fa3af86b3003638eb9d405d3131465e80da73914
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(HttpServletRequest request);
}