Forráskód Böngészése

📝 docs(silver-talent): add silver talent test data documentation

- create silver-talent-test-data.md with complete test data design
- include SQL insert statement for SilverUserProfile entity
- add frontend display effect expectations
- provide verification steps for database, API and frontend
- add supplementary instructions for test data usage
yourname 7 hónapja
szülő
commit
eebe26e0be
2 módosított fájl, 119 hozzáadás és 0 törlés
  1. 119 0
      docs/silver-talent-test-data.md
  2. 0 0
      docs/silver-talent-test-data.sql

+ 119 - 0
docs/silver-talent-test-data.md

@@ -0,0 +1,119 @@
+# 银龄库前端显示测试数据设计
+
+## 📋 完整测试数据实体
+
+基于 `SilverUserProfile` 实体结构,设计一条可在银龄库前端完整显示的测试数据:
+
+### 🏆 测试人才档案 - 张华教授
+
+```sql
+-- 插入测试数据(已认证状态)
+INSERT INTO silver_user_profiles (
+  user_id,
+  real_name,
+  nickname,
+  organization,
+  age,
+  gender,
+  phone,
+  email,
+  avatar_url,
+  personal_intro,
+  personal_skills,
+  personal_experience,
+  certification_status,
+  certification_info,
+  job_seeking_status,
+  job_seeking_requirements,
+  total_points,
+  resume_count,
+  application_count,
+  time_bank_hours,
+  knowledge_share_count,
+  knowledge_download_count,
+  knowledge_like_count,
+  knowledge_read_count,
+  knowledge_favorite_count,
+  knowledge_comment_count,
+  knowledge_ranking,
+  knowledge_ranking_score,
+  created_by,
+  updated_by
+) VALUES (
+  1, -- 用户ID(需确保users表中存在该记录)
+  '张华', -- 真实姓名
+  '华老师', -- 昵称
+  '北京市退休教师协会', -- 所属组织
+  68, -- 年龄
+  1, -- 性别:1-男,2-女,3-其他
+  '13800138000', -- 联系电话
+  'zhanghua@example.com', -- 邮箱
+  'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop', -- 头像URL
+  '资深教育专家,从事教育工作42年,退休后仍热衷于知识分享和人才培养。擅长传统文化教育、书法教学,具有丰富的社区教育经验。', -- 个人简介
+  '书法教学,传统文化教育,诗词创作,社区教育,心理咨询,亲子教育', -- 个人技能(逗号分隔)
+  '1968年参加工作,在北京四中任教35年,担任语文教师兼班主任。曾获得北京市优秀教师称号,多次参与教材编写工作。退休后组建"银龄学堂",义务为社区居民提供传统文化教育服务,累计授课超过500课时。', -- 个人经历
+  2, -- 认证状态:2-已认证
+  '高级教师职称证书、北京市优秀教师证书、心理咨询师资格证', -- 认证信息
+  1, -- 求职状态:1-积极求职
+  '希望寻找每周3-4天的兼职教师工作,可教授书法、传统文化等课程,时薪100-150元,地点最好在海淀区或西城区。', -- 求职需求
+  2850, -- 总积分
+  3, -- 简历数量
+  12, -- 申请次数
+  45.5, -- 时间银行小时数
+  28, -- 知识分享数
+  156, -- 知识下载数
+  89, -- 知识点赞数
+  1247, -- 知识阅读数
+  34, -- 知识收藏数
+  56, -- 知识评论数
+  1, -- 知识排名
+  96.8, -- 知识排名分数
+  1, -- 创建人ID
+  1 -- 更新人ID
+);
+```
+
+## 🎯 前端显示效果预期
+
+这条测试数据在银龄库前端将显示为:
+
+### 📱 卡片展示信息
+- **姓名**:张华
+- **昵称**:华老师  
+- **年龄**:68岁
+- **组织**:北京市退休教师协会
+- **认证状态**:✅ 已认证
+- **求职状态**:🟢 求职中
+- **技能标签**:书法教学 | 传统文化教育 | 诗词创作 | 社区教育 | 心理咨询
+- **个人简介**:资深教育专家,从事教育工作42年...
+- **统计数据**:
+  - 🔥 总积分:2,850
+  - 📖 阅读数:1,247
+  - 👍 点赞数:89
+  - ⭐ 排名:第1名
+  - 💰 时间银行:45.5小时
+
+## 🧪 验证步骤
+
+1. **数据库验证**:
+   ```sql
+   SELECT * FROM silver_user_profiles WHERE real_name = '张华';
+   ```
+
+2. **API测试**:
+   ```bash
+   curl "http://localhost:3000/api/v1/silver-talents"
+   ```
+
+3. **前端验证**:
+   - 打开银龄库页面
+   - 应该能看到"张华"的完整信息
+   - 点击卡片可查看详情
+
+## 🔧 补充说明
+
+- **user_id = 1** 需要确保users表中存在对应记录
+- **认证状态 = 2** 确保数据在已认证筛选下能显示
+- **技能用逗号分隔** 匹配前端解析逻辑
+- **统计数据** 提供丰富的展示信息
+- **头像URL** 使用可访问的外部图片链接

+ 0 - 0
docs/silver-talent-test-data.sql