From 0220650cd9eaf16bbeae088b45ef8c8fec135102 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 21 Dec 2025 23:36:54 -0800 Subject: [PATCH] =?UTF-8?q?fix(identity-service):=20=E7=A7=8D=E5=AD=90?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=BA=8F=E5=88=97=E5=8F=B7=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=20D25129999999?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 避免与真实用户序列号冲突 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/identity-service/prisma/seed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/identity-service/prisma/seed.ts b/backend/services/identity-service/prisma/seed.ts index 38e7a0f5..7616b118 100644 --- a/backend/services/identity-service/prisma/seed.ts +++ b/backend/services/identity-service/prisma/seed.ts @@ -51,7 +51,7 @@ const SYSTEM_ACCOUNTS = [ }, { userId: BigInt(5), - accountSequence: 'D25122100000', // 种子用户 (序号0,真实用户从1开始) + accountSequence: 'D25129999999', // 种子用户 (特殊序号,区别于真实用户) nickname: '种子用户', referralCode: 'SEED01', status: 'ACTIVE', // 必须是 ACTIVE 才能作为推荐人