支付回调测试
This commit is contained in:
parent
4edaecf89c
commit
77f193a06b
|
|
@ -148,6 +148,13 @@
|
|||
<version>2.0.21</version>
|
||||
</dependency>
|
||||
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.springframework</groupId>-->
|
||||
<!-- <artifactId>spring-context-indexer</artifactId>-->
|
||||
<!-- <version>5.2.0.RELEASE</version>-->
|
||||
<!-- <optional>true</optional>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
|
||||
</dependencies>
|
||||
<profiles>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
package cn.ysk.cashier.controller;
|
||||
|
||||
import cn.ysk.cashier.annotation.AnonymousAccess;
|
||||
import cn.ysk.cashier.annotation.rest.AnonymousGetMapping;
|
||||
import cn.ysk.cashier.annotation.rest.AnonymousPostMapping;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
|
@ -18,7 +20,6 @@ import java.util.Map;
|
|||
public class NotifyController {
|
||||
|
||||
@AnonymousAccess
|
||||
|
||||
@RequestMapping("/fstPay")
|
||||
public Object fstPay(@RequestBody Map<String, Object> req) {
|
||||
log.info("信息回调回调回调回调回调--------------------------------------------------------------------------{}", req);
|
||||
|
|
|
|||
Loading…
Reference in New Issue