| | |
| | | import java.util.Map; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface IPaylogService extends IService<Paylog> { |
| | | |
| | | R<Map<String, Object>> getPayInfo(Integer uid, Integer type, String orderID,String openId, |
| | | R<Map<String, Object>> getPayInfo(Long uid, Integer type, String orderID,String openId, |
| | | HttpServletRequest request); |
| | | |
| | | |
| | |
| | | * @param request |
| | | * @param res |
| | | */ |
| | | @RequestMapping("/alipay/notify") |
| | | public void notifyUrl(HttpServletRequest request, HttpServletResponse res); |
| | | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| | | |