fix(reward-service): 修复 getExpiredRewardsEntries 的 userId 类型转换

将 bigint 类型的 userId 转换为 number 类型以匹配返回类型定义

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-06 22:38:50 -08:00
parent e9c0196d68
commit 95cb3510aa
1 changed files with 1 additions and 1 deletions

View File

@ -1530,7 +1530,7 @@ export class RewardApplicationService {
entries: entries.map(entry => ({
id: entry.id.toString(),
accountSequence: entry.accountSequence,
userId: entry.userId,
userId: Number(entry.userId),
sourceOrderId: entry.sourceOrderNo,
rightType: entry.rightType,
usdtAmount: Number(entry.usdtAmount),