From 2c8263754f3cd744e2105856dc6440483c4a3d3c Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 6 Jan 2026 10:53:54 -0800 Subject: [PATCH] fix(wallet-service): fix system-withdrawal API route prefix to match Kong gateway MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed controller route from 'system-withdrawal' to 'wallets/system-withdrawal' to align with Kong's /api/v1/wallets/* routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../src/api/controllers/system-withdrawal.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/wallet-service/src/api/controllers/system-withdrawal.controller.ts b/backend/services/wallet-service/src/api/controllers/system-withdrawal.controller.ts index 1f82e5b9..809957f3 100644 --- a/backend/services/wallet-service/src/api/controllers/system-withdrawal.controller.ts +++ b/backend/services/wallet-service/src/api/controllers/system-withdrawal.controller.ts @@ -39,7 +39,7 @@ class SystemWithdrawalRequestDTO { * 供管理后台调用,用于从系统账户转出资金到用户账户 */ @ApiTags('System Withdrawal (Internal)') -@Controller('system-withdrawal') +@Controller('wallets/system-withdrawal') export class SystemWithdrawalController { private readonly logger = new Logger(SystemWithdrawalController.name);