Files
server-core/app/api
Pine 1a9e669145 fix: 修复企业↔个人算力互转500错误
根因: rbac_compute_pricing.py 中函数内导入路径错误
  from ..infrastructure.models import User as _User
会解析为 app/api/infrastructure/models,实际应为
  from ...infrastructure.models import User as _User
解析为 app/infrastructure/models

修复: transfer_to_personal 和 transfer_from_personal 两处函数内导入
2026-09-13 23:39:39 +08:00
..