refactor(payment): 为 PaymentController 添加控制器名称
- 在 PaymentController 类上添加了 @RestController 注解的控制器名称 "unifiedPaymentController" - 这个改动有助于在应用中更好地管理和识别控制器
This commit is contained in:
@@ -34,7 +34,7 @@ import java.util.Map;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
@Validated
|
@Validated
|
||||||
@Tag(name = "统一支付接口", description = "支持所有支付方式的统一支付接口")
|
@Tag(name = "统一支付接口", description = "支持所有支付方式的统一支付接口")
|
||||||
@RestController
|
@RestController("unifiedPaymentController")
|
||||||
@RequestMapping("/api/payment")
|
@RequestMapping("/api/payment")
|
||||||
public class PaymentController extends BaseController {
|
public class PaymentController extends BaseController {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user