支付回调会请求getOrder,而回调时是不需要登录的

Signed-off-by: Fanjc <271366833@qq.com>
This commit is contained in:
Fanjc 2023-12-27 02:17:40 +00:00 committed by Gitee
parent f50780300f
commit 3844d75ed2
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -26,6 +26,7 @@ public interface PayOrderApi {
@GetMapping(PREFIX + "/get")
@Operation(summary = "获得支付单")
@Parameter(name = "id", description = "支付单编号", example = "1", required = true)
@PermitAll
CommonResult<PayOrderRespDTO> getOrder(@RequestParam("id") Long id);
@PutMapping(PREFIX + "/update-price")