lisy
2023-07-06 0ce090ba49e37710a129cf21ac762bbe43bcd50b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.dsh.account.controller;
 
 
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 支付回调控制器
 */
 
 
@RestController
@RequestMapping("/payment/callback")
public class PaymentCallbackController {
 
 
    /**
     * 支付宝支付回调接口
     */
    @PostMapping("/v1")
    public void alipayCallback(){
 
    }
 
 
    /**
     * 微信支付回调接口
     */
    @PostMapping("/v2")
    public void weChatCallback(){
 
    }
 
 
}